使用 Foreach 循环访问二维数组的一级键
使用二维数组时,您可能需要访问第一级按键循环。要实现此目的,您可以利用以下方法:
考虑以下 $places 数组:
<code class="php">[Philadelphia] => Array ( [0] => Array ( [place_name] => XYX [place_id] => 103200 [place_status] => 0 ) [1] => Array ( [place_name] => YYYY [place_id] => 232323 [place_status] => 0 ) )</code>
在提供的视图代码中,您有一个 foreach 循环,该循环遍历数组的第二个级别键。要访问第一级密钥(例如“Philadelphia”),您可以按如下方式修改循环:
<code class="php"><?php foreach ($places as $key => $site): ?> <h5><?= $key ?></h5> <?php foreach ($site as $place): ?> <h6><?= $place['place_name'] ?></h6> <?php endforeach ?> <?php endforeach ?></code>
通过使用 $key =>; $site 在外循环中,您可以通过 $key 访问第一级键,并通过 $site 遍历第二级键。此修改将允许您在示例中检索“Philadelphia”密钥。
以上是如何使用 Foreach 循环访问 2D 数组的第一级键?的详细内容。更多信息请关注PHP中文网其他相关文章!