0
我有一個觀點:如何把一個變量的笨temaplate
public function index()
{
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
if ($lang == "fr"){
$this->smarty->display('excel.tpl');
}
else{
$this->smarty->display('excel_eng.tpl');
}
}
我的模板:
<div class="fullscreen background" id="landing-page-image">
{include 'components/menu.tpl'}
</div>
我想更換取決於語言的組件
如何做它?
如何把變量放在{include'components/variable here'}? – Mark 2014-11-03 12:43:33
爲什麼從一開始就使用不同的模板時傳遞一個var? – akmozo 2014-11-03 12:49:47
我編輯了我的答案,將var傳遞給模板。 – akmozo 2014-11-03 13:04:49