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}>
<{$item.name}> |
<{$item.summary}> |
<{$item.date}> |
<{if ($count+1) is div by 2}>
<{/if}>
<{/foreach}>
每行放置三個 <{$item.name}> 後換行 你喜欢换多少就改改参数就可以了!
<{foreach item=item from=$items key=count}>
<{$item.name}> |
<{if ($count+1) is div by 3}>
<{/if}>
<{/foreach}>
另一種利用 cycle 來做換行的例子,但只能作到每行兩筆資料就換行的效果 只能换两行
<{foreach item=item from=$items}>
<{$item.name}> <{cycle values=" | ,
"}>
<{/foreach}>