Given the following array:
array(4) {
[32]=>
string(1) "1"
[33]=>
string(1) "0"
[34]=>
string(1) "2"
[35]=>
string(1) "1"
}
Is there a bult-in function to rearrange the indexes like that?
array(4) {
[0]=>
string(1) "1"
[1]=>
string(1) "0"
[2]=>
string(1) "2"
[3]=>
string(1) "1"
}