共计 431 个字符,预计需要花费 2 分钟才能阅读完成。
要将索引数组转换为关联数组,可以使用 array_combine() 函数。
array_combine() 函数接受两个数组作为参数,第一个数组为关键字数组,第二个数组为值数组,它将关键字数组中的值作为键,值数组中的值作为对应的值,返回一个新的关联数组。
下面是一个示例代码:
$keys = array('a', 'b', 'c');
$values = array(1, 2, 3);
$result = array_combine($keys, $values);
print_r($result);
输出结果为:
Array
([a] => 1
[b] => 2
[c] => 3
)
在示例代码中,通过 array_combine() 函数将索引数组 $keys 和 $values 转换为一个关联数组 $result。关键字数组 $keys 中的值作为新数组 $result 的键,对应的值数组 $values 中的值作为 $result 的对应值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完