What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
loadFilter() — 载入过滤插件
void loadFilter(string type,
string name);
第一个参数代表过滤器的类型,取值应当是pre
、post
或者
output
之一。
第二个参数name
设定过滤器的名称。
Example 14.34. 载入过滤插件
<?php // 载入名为'trim'的前置过滤器 $smarty->loadFilter('pre', 'trim'); // 载入另一个名为'datefooter'的前置过滤器 $smarty->loadFilter('pre', 'datefooter'); // 载入名为'compress'的输出过滤器 $smarty->loadFilter('output', 'compress'); ?>