Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我的网站中有这样的结构:
templates .orderpages ..domain.tpl .nextgen_clean ..root.tpl
在文件 root.tpl 中我想包含 domain.tpl,只有我的 $template_dir 始终是您所在的文件夹,所以我如何返回一个文件夹,因为 {include file="../etc} 不起作用。
我希望有人能帮帮忙。
从php页面定义如下
$file_to_show="page_request.tpl"; $smarty->assign("file_to_show", $file_to_show);
现在在 tpl 文件中显示变量
{include file=$file_to_show}
并且还来自 tpl,您直接包括如下
{include file=page.tpl}