Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将索引数组转换为普通数组。基本上得到的是:
Array ( [0] => 14 [1] => 19 [2] => 20 )
我需要的是:
Array(14,19,20);
我试过谷歌但没有找到信息。我认为这种功能在 PHP 中不可用,有吗?请告诉我!
谢谢,阿西夫
您正在追逐阴影: 您显示的两个数组都是相等的。
PHP 中不存在未索引数组之类的东西。
但是,如果您真的想确定,请使用$newArray = array_values($array)
$newArray = array_values($array)