欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

在smarty中通过php脚本给smarty赋值

程序员文章站 2022-05-30 17:26:26
...
一,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!