smarty模板引擎_8-扩展块函数插件

为Smarty模板扩展块函数插件

两种方式

1、通过$smarty->registerPlugin()方法注册块函数

function stripHtml($params,$content,$smarty,$repeat){
	if(!empty($params['allowTags'])){
		return strip_tags($content,'<'.$params['allowTags'].'>');
	}else{
		return strip_tags($content);
	}
}
$smarty->registerPlugin('block','stripHtml', 'stripHtml');
$params,传入的数组参数

$content,需要处理的内容

$smarty,Smarty的对象

$repeat,对象的引用


注册块函数

$smarty->registerPlugin('block','stripHtml', 'stripHtml');
block,表示注册为块函数

striHtml,块函数名称,必须与回调函数名一致

strHtml,块函数调用的回调函数



2、添加块函数插件到plugins目录

function smarty_block_stripHtml($params,$content,$smarty,$repeat){
	if(!empty($params['allowTags'])){
		return strip_tags($content,'<'.$params['allowTags'].'>');
	}else{
		return strip_tags($content);
	}
}

命名规则:smarty_block_回调函数名称(){}
function smarty_block_stripHtml($params,$content,$smarty,$repeat){}

插件命名规则:

block.stripHtml.php

你可能感兴趣的:(PHP模板引擎)