您的位置:首页 > 其它

smarty 自定义函数

2015-10-09 14:44 363 查看
<?php

//创建smarty对象

require_once("./libs/Smarty.class.php");

$smarty = new Smarty();

//自定义一个函数

//说明:(1)、$arr为一个数组;(2)、tpl调用形式{test times="4" size="5" con="hello,world" color="red"}

function test($arr){

$str = "";

for($i=0;$i<$arr['times'];$i++){

$str .= "<font size='".$arr['size']."' color='".$arr['color']."'>".$arr['con']."</font>";

}

return $str;

}

//注册函数 registerPlugin

$smarty->registerPlugin("function","test","test");//第二个参数是模板文件调用的函数名称,可变;第三个参数是上面自定义的函数名称;相应于一个对应关系

$smarty->display("temp.tpl");

?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: