程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> smarty 換行實例 表格換行,smarty換行

smarty 換行實例 表格換行,smarty換行

編輯:關於PHP編程

smarty 換行實例 表格換行,smarty換行


在 foreach 中加入 key=count

<table>  
<{foreach item=item from=$items key=count}>  
<{if $count is div by 2}><tr>
<{/if}>   
<td><{$item.name}></td>   
<td><{$item.summary}></td>   
<td><{$item.date}></td>  
<{if ($count+1) is div by 2}></tr><{/if}>  
<{/foreach}></table>

每行放置三個 <{$item.name}> 後換行 你喜歡換多少就改改參數就可以了!

<table>  
<tr>  
<{foreach item=item from=$items key=count}>      
<td><{$item.name}></td>  
<{if ($count+1) is div by 3}></tr><tr><{/if}>  
<{/foreach}>  
</tr></table>

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


<table>  
<tr>   
<{foreach item=item from=$items}>      
<td><{$item.name}>      
<{cycle values="</td>,</td></tr><tr>"}>   
<{/foreach}>  
</tr>
</table>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved