Rebase array keys after unsetting elements [duplicate]

Try this:

$array = array_values($array);

Using array_values()

Leave a Comment