首頁  >  文章  >  後端開發  >  如何在 PHP Foreach 迴圈中檢索巢狀數組的數組鍵?

如何在 PHP Foreach 迴圈中檢索巢狀數組的數組鍵?

Barbara Streisand
Barbara Streisand原創
2024-10-17 17:22:02622瀏覽

How to Retrieve Array Keys in a PHP Foreach Loop for Nested Arrays?

PHP: Retrieving Array Keys in Foreach Loop

In PHP, iterating over an associative array using the foreach loop provides access to both the values and keys. However, the key() function only returns the current value's key, which can be insufficient when working with nested arrays.

For instance, consider an array like this:

<code class="php"><?php
$samplearr = array(
    4722 => array('value1' => 52, 'value2' => 46),
    4922 => array('value1' => 22, 'value2' => 47),
    7522 => array('value1' => 47, 'value2' => 85)
);
?></code>

If you attempt to use key($item) in a foreach loop to retrieve the parent key, you may encounter unexpected results:

<code class="php"><?php
foreach ($samplearr as $item) {
    echo "<tr><td>" . key($item) . "</td>";
    echo "<td>" . $samplearr['value1'] . "</td>";
    echo "<td>" . $samplearr['value2'] . "</td></tr>";
}
?></code>

This code only returns the value keys: value1 and value2.

To access the parent keys, you can use the following approach in the foreach loop:

<code class="php"><?php
foreach ($samplearr as $key => $item) {
    echo "<tr><td>" . $key . "</td>";
    echo "<td>" . $item['value1'] . "</td>";
    echo "<td>" . $item['value2'] . "</td></tr>";
}
?></code>

By using $key, the loop iterates over the parent keys, allowing you to access and print both the parent and child values as desired.

以上是如何在 PHP Foreach 迴圈中檢索巢狀數組的數組鍵?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn