Php 如何在smarty上方的文件夹中包含tpl文件

Php 如何在smarty上方的文件夹中包含tpl文件,php,directory,smarty,Php,Directory,Smarty,您好,我的网站中有以下结构: 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("fi

您好,我的网站中有以下结构:

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);
{include file=page.tpl}
现在在tpl文件中显示变量

{include file=$file_to_show}
也可以从第三方物流直接包括如下内容

$file_to_show="page_request.tpl";
$smarty->assign("file_to_show", $file_to_show);
{include file=page.tpl}

我把php文件放在哪里?