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}