PHP reindex array?

Use array_values.

$myarray = array_values($myarray);

Leave a Comment