Get Smarty

Donate

Donate Bitcoin Bitcoin
Paypal

Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Buy cheap eyeglasses from Cheapglasses123.com and save up to 80%.

Buy prescription glasses from www.australiaglasses.com and save.

Cheap Glasses Now On Sale at GlassesPeople.com. Starts At $7.95.

Where to buy discount wedding dresses and cheap smart dresses free shipping - Weddingdresstrend.com

Brautkleider auf Topwedding.de

Find free files to download on allwhatyouwant.net

Looking For Affordable Wedding Dresses 2015 at Best Prices On TDBridal.com

Shop high quality cheap prom dresses on Dresswe.co.uk

Buy New Arrival Cheap Prom Dresses 2015 at JDBRIDAL Prom Dress Store

Advertisement

后置过滤器

模板的后置过滤器是当模板被编译后时执行的PHP函数。 后置过滤器可以通过注册过滤器来调用, 或者放置到插件目录中,用 loadFilter()函数或者 设置 $autoload_filters来调用。 Smarty把编译后的代码作为第一个参数传递到函数中,并期待函数返回经过处理的代码。

Example 17.12. 使用后置过滤器


<?php
// 在PHP程序中
function add_header_comment($tpl_source, Smarty_Internal_Template $template)
{
    return "<?php echo \"<!-- Created by Smarty! -->\n\"; ?>\n".$tpl_source;
}

// 注册后置过滤器
$smarty->registerFilter('post','add_header_comment');
$smarty->display('index.tpl');
?>

  

上面的后置过滤器把编译后的index.tpl的代码变成这样:


<!-- Created by Smarty! -->
{* rest of template content... *}

  

参见 registerFilter(), 前置过滤器, 输出过滤器, 和 loadFilter().

Comments
No comments for this page.
Post a Comment
All comments are moderated. Support questions are ignored, use the forums instead.
Author:
Email: (not shown)
What is 13 plus 10? (Are you human?)

Advertisement