Hi,
Suppose that array its print_r out put as follows:
Array ( [0] => 504 [2] => 605 )
I want the print out to be
Array ( [0] => 504 [1] => 605 ) or
Array ( [0] => 605 [1] => 504 )
In other word I want arr[0] and arr[1] to have values and there is no arr[2].
Is there a native PHP function do this?