How to reindex an array?

Use array_values:

$reindexed_array = array_values($old_array);

Leave a Comment