smarty模板引擎中自定义函数的方法_php实例
程序员文章站
2022-06-08 16:25:54
...
本文实例讲述了smarty 自定义函数方法,分享给大家供大家参考。具体如下:
{test times="3" con="hello world" size="3" color="green"}
注意:smarty 3.1.8 已经不支持注册函数 register_function,应换成 registerPlugin
本实例目的:输出 times 次 con的内容(输出4次hello world)
文件1:
复制代码 代码如下:
//创建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 $str .= "".$arr['con']."";
}
return $str;
}
//注册函数 registerPlugin
$smarty->registerPlugin("function","test","test");//第二个参数是模板文件调用的函数名称,可变;第三个参数是上面自定义的函数名称;相应于一个对应关系
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 $str .= "".$arr['con']."";
}
return $str;
}
//注册函数 registerPlugin
$smarty->registerPlugin("function","test","test");//第二个参数是模板文件调用的函数名称,可变;第三个参数是上面自定义的函数名称;相应于一个对应关系
$smarty->display("temp.tpl");
?>
模板文件:temp.tpl
复制代码 代码如下:
smarty自定义函数的使用
{test times="3" con="hello world" size="3" color="green"}
注意:smarty 3.1.8 已经不支持注册函数 register_function,应换成 registerPlugin
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
smarty模板引擎从配置文件中获取数据的方法
-
smarty模板引擎中自定义函数的方法
-
smarty模板引擎中内建函数if、elseif和else的使用方法
-
smarty模板引擎使用内建函数foreach循环取出所有数组值的方法
-
PHP针对常规模板引擎中与CSS/JSON冲突的解决方法
-
在smarty模板中使用PHP函数的方法
-
在smarty中调用php内置函数的方法
-
Laravel框架中扩展函数、扩展自定义类的方法,laravel框架_PHP教程
-
smarty模板中拼接字符串的方法_php实例
-
PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法)_php实例