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.
$arr = array(3=>'test',6=>'test 2');
作りたい
$arr = array(0=>'test',1=>'test 2');
最善の方法は何ですか。それを行うphp関数はありますか。
前もって感謝します
単に使用しますarray_values:
array_values
$arr = array(3=>'test',6=>'test 2'); $arr = array_values($arr);
http://www.php.net/manual/en/function.array-values.php