重新索引多维数组的子数组
问题:
我们如何重置多维数组中的所有子数组?例如,考虑数组:
[ '1_Name' => [ '1' => 'leo', '4' => null ], '1_Phone' => [ '1' => '12345', '4' => '434324' ], ]
我们的目标是将其转换为:
[ '1_Name' => [ '0' => 'leo', '1' => null ], '1_Phone' => [ '0' => '12345', '1' => '434324' ], ]
答案:
重新索引数组中所有数组的键,我们将 array_map 与 array_values 结合使用。代码如下:
<code class="php">$arr = array_map('array_values', $arr);</code>
array_values 重置单个数组的键,而 array_map 将此操作应用于父数组中的每个子数组。
或者,如果我们只需要重新对一级数组的键进行索引,我们可以直接使用array_values:
<code class="php">$arr = array_values($arr);</code>
以上是如何重新索引多维数组中的子数组?的详细内容。更多信息请关注PHP中文网其他相关文章!