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:
load_filter
void load_filter(string type,
string name);
Questa funzione può essere usata per caricare un plugin filtro. Il primo parametro specifica il tipo di filtro da caricare e può avere uno di questi valori: 'pre', 'post' o 'output'. Il secondo parametro specifica il nome del plugin filtro, ad esempio 'trim'.
Example 13.20. caricamento di plugin filtro
<?php $smarty->load_filter('pre', 'trim'); // carico un prefiltro di nome 'trim' $smarty->load_filter('pre', 'datefooter'); // carico un altro prefiltro di nome 'datefooter' $smarty->load_filter('output', 'compress'); // carico un filtro di output di nome 'compress' ?>