PHP reindex array? [duplicate] PHP reindex array? [duplicate] arrays arrays

PHP reindex array? [duplicate]


Use array_values.

$myarray = array_values($myarray);


$myarray = array_values($myarray);

array_values


array_values does the job :

$myArray  = array_values($myArray);

Also some other php function do not preserve the keys, i.e. reset the index.