Chese
Guest
Crazy: Может проще
PHP:
$array = array (8 => 12, 1 => 10, 5 => 11);
ksort($array);
$array = array_values($array);
print_r($array);