PHP smartyでfor文
smartyのテンプレートでfor文を書きたい
ググったら
http://kayano.jugem.cc/?eid=228
に書き方があった。
これ(PHP)を
for($i=0; $i<5; $i++){ echo "$i<br>"; }
Smartyで書くと以下の3つの書き方があるとのこと
{section name=cnt loop=5} {$smarty.section.cnt.iteration-1}<br> {/section}
{section name=cnt loop=5} {$smarty.section.cnt.index}<br> {/section}
{section name=cnt start=0 loop=5} {$smarty.section.cnt.index}<br> {/section}