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:
Si existe algun filtro que usted desea cargar en cada llamada de template, usted puede especificar cual variable usar y el Smarty ira automáticamente a cargarlos para usted. La variable es un arreglo asociativo donde las llaves son tipos de filtro y los valores son arreglos de nombres de filtros. Por ejemplo:
<?php $smarty->autoload_filters = array('pre' => array('trim', 'stamp'), 'output' => array('convert')); ?>
Ver también register_outputfilter(), register_prefilter(), register_postfilter() y load_filter()