Smarty 图标

您可以根据商标须知使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他相关查询,请通过以下方式联系我们

使用 Smarty 的网站

广告

名称

unregisterPlugin — 动态注销插件

说明

void unregisterPlugin(string type,
                      string name);

此方法注销之前通过registerPlugin()注册的插件,它使用以下参数

  • type 定义插件的类型。有效值是“function”、“block”、“compiler”和“modifier”。

  • name 定义插件的名称。

示例 14.50 注销函数插件

<?php

// we don't want template designers to have access to function plugin "date_now" 
$smarty->unregisterPlugin("function","date_now");

?>

   

另请参见 registerPlugin()