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.
テンプレートに smarty 3.1.12 を使用していますが、php ファイルで smarty 変数にアクセスしようとしています。私のすべての調査では、smarty の以前のバージョンについてのみ回答が返されました。
以下のコードを使用してください
$myVars = $this->get_template_vars(); $this->assign('myVars',$myVars); {foreach from=$myVars key=k item=i} {$k}: {$i} {/foreach}
$myVar = $SMARTY->getTemplateVars('myVar');
smarty バージョン 3.1.12 では、この方法を使用します。