我坚持做一个有 4 列的表格,表格的数据来自一个数组,这是我完成的代码:
$sample // this is an array and it has 15 values inside
<table>
foreach($sample as $x){
$rows="<td>$x</td>".$rows;
$l++;
if($l==4){
echo"<tr>".$rows."</tr>";
$l=0;
$rows="";
}
}
</table>
如果我是正确的,此代码将生成一个 3 行和 4 列的表格宽度,缺少的内容是我需要在 $sample 中包含所有数据,我需要此代码的这种输出。
[1][1][1][1]
[1][1][1][1]
[1][1][1][1]
[1][1][1][0]
1 是 $sample 的数组值,而 0 没有值,因为 og $ sample 的值只有 15