"abc", "second" =-6ren">
gpt4 book ai didi

PHP 将编号数组更改为带键的数组

转载 作者:行者123 更新时间:2023-12-04 16:00:23 27 4
gpt4 key购买 nike

我在 PHP 中有一个这样的数组:

$arr=["abc","def","ghi"];

我想稍后将其转换为带有键的数组,如下所示:

$arr=["first" => "abc", "second" => "def", "third" => "ghi"];

如何轻松地将第一个数组转换为第二个数组?换句话说,如何向数字数组添加键?

非常感谢。

最佳答案

使用array_combine使用一个数组作为键,另一个数组作为值:

$arr = ["abc", "def", "ghi"];
$keys = ["first", "second", "third"];
$arr = array_combine($keys, $arr);

关于PHP 将编号数组更改为带键的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14536860/

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