相关关键词
关于我们
最新文章
Smarty中foreach的index、iteration,@count的使用
发布日期:2014-02-20 00:00:00
611
{{if $a|@count neq 0}} //smarty调用php内置函数 前面加@
index包含当前数组索引,从零开始。
index示例
{* The header block is output every five rows *}
.iteration包含当前循环次数,与index不同,从1开始,每次循环增长1。
iteration和index示例
{* this will output 0|1, 1|2, 2|3, ... etc *}
{{/if}}
{* 每五行输出一次头部区块 *}
<table>
{foreach from=$items key=myId item=i name=foo}
{/foreach}
</table>
{* 该例将输出0|1, 1|2, 2|3, ... 等等 *}