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() — load a filter plugin
void load_filter(string type,
string name);
The first argument specifies the type of the filter to load and can be one
of the following: pre
, post
or
output
.
The second argument specifies the name
of the
filter plugin.
Example 13.21. Loading filter plugins
<?php // load prefilter named 'trim' $smarty->load_filter('pre', 'trim'); // load another prefilter named 'datefooter' $smarty->load_filter('pre', 'datefooter'); // load output filter named 'compress' $smarty->load_filter('output', 'compress'); ?>
See also
register_prefilter()
,
register_postfilter()
,
register_outputfilter()
,
$autoload_filters
and
advanced features.