Smarty图标

在遵守商标声明的情况下,您可以使用Smarty徽标。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他咨询,请联系以下邮箱

使用Smarty的网站

广告

名称

unregisterFilter() — 动态注销过滤器

说明

void unregisterFilter(string type,
                      string|array callback);

使用此方法可以动态注销过滤器。它使用以下参数

  • type定义过滤器的类型。有效的值为“pre”、“post”、“output”和“variable”。

  • callback定义PHP回调。它可以是

    • 包含函数name的字符串

    • 形式为array($object, $method)的数组,其中$object是对对象的引用,$method是包含方法名称的字符串

    • 形式为array($class, $method)的数组,其中$class是类名,$method是该类的一个方法。

请参见registerFilter()