目次

Smarty tips

特定の Smarty 変数をダンプする

<pre><!--{$var|@var_export}--></pre>

割り当てられている Smarty 変数全てをダンプする

<pre><!--{php}-->
echo nl2br(htmlspecialchars(var_export($this->get_template_vars(), TRUE)));
<!--{/php}--></pre>
<!--{capture assign=tmp}--><!--{php}-->
var_dump($this->get_template_vars(), TRUE);
<!--{/php}--><!--{/capture}-->
<pre><!--{$tmp|h|nl2br}--></pre>

debug が失敗する

未解決

<!--{debug}-->