使用Foreach 循環來擷取二維數組中的第一級鍵
在PHP 中,迭代多維數組可能很棘手,尤其是數組當涉及到存取其第一級密鑰時。讓我們深入研究一個實際場景,並示範如何使用 foreach 迴圈來實現此目的。
您有一個名為$places 的數組,其結構如下:
[Philadelphia] => Array ( [0] => Array ( [place_name] => XYX [place_id] => 103200 [place_status] => 0 ) [1] => Array ( [place_name] => YYYY [place_id] => 232323 [place_status] => 0 ) )
您的程式碼目前如下所示this:
foreach($places as $site): ?> <h5><?=key($site)?></h5> <?php foreach($site as $place): ?> <h6><?=$place['place_name']?></h6> <?php endforeach?> <?php endforeach ?>
當您呼叫key($site) 時,您的目標是檢索第一層金鑰(例如「Philadelphia」),但它目前會傳回第二層金鑰(「place_name」)。
要解決此問題,您需要直接存取一級密鑰,這在PHP 中很簡單:
foreach ($places as $key => $value)
在此程式碼中,$key 將是一級密鑰, $ value 將表示該鍵對應的陣列。
這是修改後的程式碼:
foreach ($places as $key => $site): ?> <h5><?= $key ?></h5> <?php foreach($site as $place): ?> <h6><?=$place['place_name']?></h6> <?php endforeach?> <?php endforeach ?>
以上是如何在 PHP 中使用 Foreach 迴圈檢索二維數組中的第一層鍵?的詳細內容。更多資訊請關注PHP中文網其他相關文章!