2012-05-05 64 views
0

我需要一些幫助,用PHP生成一個表格。我有一個10 -15項的數組。 像這樣:如何自動創建一個新的表格行

$array = array(IME1, IME2, IME3, IME4,IME5, IME6, IME7 ,IME8 ,IME9 ,IME10); 

的目標是創建這樣一個表:在每3項自動新行。

example

有人能幫助我,好嗎?

回答

4

看起來像一個工作,array_chunk()

array_chunk($array, 3); 
+0

我需要一些幫助如何使表工作? – Axxess

0

不是最漂亮的解決方案

$chunks = array_chunk($array, $max_col); 
$max_col = 3; 
?> 
<table border="1"> 
    <tbody> 
     <? foreach($chunks as $key => $value){ 
      echo "<tr>"; 
      foreach($value as $k => $v){ 
       echo "<td> ".$v." </td>"; 
      } 
      // Finish tr, but only if there are no items left for the next row 
      if(count($value) == $max_col){ 
       echo "</tr>"; 
      } 
     } 
     // Finish td with an empty value setting colspan if there are not enough items to fil the entire row 
     if(count($value) < $max_col){ 
      echo "<td colspan=".($max_col-count($v)-1)."></td>"; 
      // Finish the last row 
      echo "</tr>"; 
     } 
     ?> 
    </tbody> 
</table> 

想想從您的演示文稿分離你的邏輯。有很多模板引擎可以輕鬆解決這個問題,或者讓您定義一個處理此任務的函數/修飾符/代碼段,並讓您輕鬆地重用它。

相關問題