在smarty中通过php脚本给smarty赋值
Posted CleverCode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在smarty中通过php脚本给smarty赋值相关的知识,希望对你有一定的参考价值。
一,php 脚本(test.php)
$smarty = new Sys_SmartyWork(CRON_HOME."/modifyInfo/tpl",CRON_HOME."/modifyInfo/tpl_c"); $hash = array(); $info = array(); $info ['smarty'] = 'i am smarty!'; $info ['php'] = 'i am php'; $hash['arrInfo'] = $info; //进行模板变量替换 $smarty->assign($hash); //编译并显示位于./templates下的index.htm模板 $msg = $smarty->display('test.tpl');
二,tpl 脚本(‘test.tpl‘)
{{$arrInfo.smarty}} ------------ {{ php }} //php给smarty变量赋值 $this->_tpl_vars['name'] = 'hello world!'; {{/php}} {{$name}}
三,显示
i am smarty!------------
hello world!
以上是关于在smarty中通过php脚本给smarty赋值的主要内容,如果未能解决你的问题,请参考以下文章