Morning all,
I have the following array:
Array
(
[0] => 1
[1] => 2
[2] => 3
[6] => 27
[7] => 28
[8] => 29
[9] => 30
[10] => 21
)
is there a simple function that will reindex the array to be a normal incrementally indexed array ie.
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 27
[4] => 28
[5] => 29
[6] => 30
[7] => 31
)
Cheers all.
HS