什么是 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()
。