gpt4 book ai didi

php - 用数字键替换关联数组键的最快方法

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

我有一个数组:

array('something' => 'like this', 'something' => 'like this', 'something' => 'like this');

我想把它替换成这样(尽可能快,使用一个简单的内联函数):

array(0 => 'like this', 1 => 'like this', 2 => 'like this');

可以使用任何内置的 php 数组函数吗?

最佳答案

查看 array_values

$new_array=array_values($array);
print_r($new_array);

关于php - 用数字键替换关联数组键的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6384761/

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