string(4) "john" ["l"]=> string(3) "red" -6ren">
gpt4 book ai didi

php - 在 PHP 中更改关联数组中的键

转载 作者:可可西里 更新时间:2023-10-31 22:06:24 24 4
gpt4 key购买 nike

假设我有一个这样的数组:

array(2) {
[0]=> array(2) {
["n"]=> string(4) "john"
["l"]=> string(3) "red"
}
[1]=> array(2) {
["n"]=> string(5) "nicel"
["l"]=> string(4) "blue"
}
}

如何更改内部数组的键?比如说,我想将“n”更改为“name”,将“l”更改为“last_name”。考虑到它可能会发生,而不是数组没有特定的键。

最佳答案

使用 array_walk

array_walk($array, function (& $item) {
$item['new_key'] = $item['old_key'];
unset($item['old_key']);
});

关于php - 在 PHP 中更改关联数组中的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13233405/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com