前面的答案是错误的,要访问数组元素,需要通过键获取:
$location = $release_edu_qual[0]["location"];
在上面的代码中,我们得到了初始数组中第一个(从零开始)数组的位置。
因此,要从该初始数组中列出所需的所有数组数据,可以使用以下命令:
<table>
<thead>
<tr>
<th>Location</th>
<th>Qualification</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<?php
foreach( $release_edu_qual as $item ){
echo \'<tr>\';
echo \'<td>\' . $item["location"] . \'</td>\';
echo \'<td>\' . $item["qualification"] . \'</td>\';
echo \'<td>\' . $item["date"] . \'</td>\';
echo \'</tr>\';
}
?>
</tbody>
</table>