i want to turn
$blah[0] = "blah zero" $blah[5] = "blah one"
into
$blah[0] = "blah zero" $blah[1] = "blah one"
I could use a foreach loop to create a new array, but I was wondering if there was any function that could do it?
Use [man]array_values/man.
Thanks.