2
$arr = array(3=>'test',6=>'test 2');
我希望把它如何刪除assocative數組鍵並添加默認的數組鍵PHP
$arr = array(0=>'test',1=>'test 2');
什麼是最好的方式。有沒有任何PHP功能來做到這一點。
在此先感謝
$arr = array(3=>'test',6=>'test 2');
我希望把它如何刪除assocative數組鍵並添加默認的數組鍵PHP
$arr = array(0=>'test',1=>'test 2');
什麼是最好的方式。有沒有任何PHP功能來做到這一點。
在此先感謝
只需使用array_values
:
$arr = array(3=>'test',6=>'test 2');
$arr = array_values($arr);
工作完美,非常感謝你:) – 2013-02-12 09:54:10
退房[array_values()](http://php.net/manual/en/function.array- values.php) – billyonecan 2013-02-12 09:27:15