时间:2021-07-01 10:21:17 帮助过:4人阅读
下面就说说如何在include file的值中使用变量的方法吧!
include file={$path}"header.dwt" 或者 include file="{$path}header.dwt"
以上这两种写法是错误的,在模板中直接使用变量行不通,我们可以在php文件中来写。最终正确写法如下:
在php文件中可以这么写:
$header=$path.'header.dwt'; $smarty->assign('header',$header);
在模板文件中则这样写:
{include file=$header}
http://www.bkjia.com/PHPjc/764077.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/764077.htmlTechArticle今天在用smarty做个网站的时候,由于有这么一个需要 include file="动态路径" ,这就需要在file的值里面使用变量了,尝试了半天终于解决,自...