我正在尝试使用 2 个数组元素在表行中循环 16 次。我知道我不能用 2 个数据元素循环 16 次,但我想显示一个有 16 行的表格,只有前 2 行会有数据,其他人会留空。与下图相同
我试过这段代码,但它不是我想要的
<th>No</th>
<th>Id</th>
<th>Name</th>
for($i=1; $i<=16; $i++)
{
<tr>
<td> echo $i </td>
foreach($array as $a){
<td> $a->id </td>
<td> $a->name </td>
}
</tr>
}
皈依舞