您当前的位置: 首页 > 学无止境 > 网站建设 网站首页网站建设
smarty内建函数3-自定义内建函数
发布时间:2016-03-12 22:23:20编辑:雪饮阅读()
局部指定smarty模版路径以及编译目录:
自定义函数:
function test1($args){
$str="";
for($i=0;$i<$args['times'];$i++){
$str.="<font color='".$args['color']."' size='".$args['size']."' >".$args['con']."</font>";
}
return $str;
}
$smarty->register_function("xy","test1");
{xy times="10" con="hello" color="red" size="5"}
自定义函数的块方式:
function test1($args,$con){
$str="";
for($i=0;$i<$args['times'];$i++){
$str.="<font color='".$args['color']."' size='".$args['size']."' >".$con."</font>";
}
return $str;
}
$smarty->register_block("xy","test1");
{xy times="10" color="red" size="5"}
www.gaojiupan.cn<br/>
{/xy}
上机练习:
关键字词:smarty,内建函数,自定义