last
last is set to true if the current section iteration is the last one.
如果当前循环执行到最后一次,last 被设置为true.
Example 7-26. section property last 例 7-26. section 的 last 属性演示
{section name=customer loop=$custid} {if $smarty.section.customer.first} {/if} {$smarty.section.customer.index} id: {$custid[customer]} | {if $smarty.section.customer.last} {/if} {/section} OUTPUT: 0 id: 1000 | 1 id: 1001 | 2 id: 1002 | |
|