codecamp

Smarty成员方法:registerFilter()

Name

registerFilter() — 注册过滤器

说明

void registerFilter(string type,
                    mixed callback);

注册过滤器。 参数如下:

  • type defines the type of the filter. Valid values are "pre", "post", "output" and "variable".

  • callback defines the PHP callback. it can be either:

    • A string containing the function name

    • An array of the form array(&$object, $method) with &$object being a reference to an object and $method being a string containing the method-name

    • An array of the form array($class, $method) with $class being the class name and $method being a method of the class.

Technical Note

If the chosen function callback is of the form array(&$object, $method), only one instance of the same class and with the same$method can be registered. The latest registered function callback will be used in such a scenario.

prefilter前置过滤器,在模板编译之前执行的过滤器。 详情参见前置过滤器。

postfilter后置过滤器,在模板编译成PHP后执行的过滤器。 详情参见后置过滤器。

outputfilter输出过滤器,在模板将要displayed前执行的过滤器。 详情参见输出过滤器。

参见 unregisterFilter()loadFilter()$autoload_filters, 前置过滤器 后置过滤器输出过滤器。

Smarty成员方法:registerDefaultPluginHandler()
Smarty成员方法:registerPlugin()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }