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:
如果有些过滤器你希望每个模板编译的时候都可以调用,那么你可以使用这个参数。 Smarty将自动加载这些过滤器。参数是二维数组,键是过滤器的类型,值是包含着多个过滤器名字的数组。 例如:
<?php $smarty->autoload_filters = array('pre' => array('trim', 'stamp'), 'output' => array('convert')); ?>