Array ( [0] => 2 [1] => 3 )
show code
<?php
$foo
[
1
] =
3
;
$foo
[
0
] =
2
;
ksort
(
$foo
);
print_r
(
$foo
);