当前位置:Gxlcms > PHP教程 > smarty换行范例表格换行

smarty换行范例表格换行

时间:2021-07-01 10:21:17 帮助过:20人阅读

smarty 换行实例 表格换行

在 foreach 中加入 key=count


<{foreach item=item from=$items key=count}>
<{if $count is div by 2}>
<{/if}>



<{if ($count+1) is div by 2}><{/if}>
<{/foreach}>
<{$item.name}> <{$item.summary}> <{$item.date}>


每行放置三個 <{$item.name}> 後換行 你喜欢换多少就改改参数就可以了!



<{foreach item=item from=$items key=count}>

<{if ($count+1) is div by 3}><{/if}>
<{/foreach}>
<{$item.name}>


另一種利用 cycle 來做換行的例子,但只能作到每行兩筆資料就換行的效果 只能换两行




<{foreach item=item from=$items}>
,"}>
<{/foreach}>

<{$item.name}>
<{cycle values="

人气教程排行