asort() function: array indexes maintain their original association with the elements.
The function's syntax is: void asort (array array)
<?
$cities = array ("A", "N", "R", "V", "A");
asort($cities);
// for (reset ($cities); $key = key ($cities); next ($cities)) :
// print "cities[$key] = $cities[$key] <br>";
// endfor;
print_r($cities);
?>
Related examples in the same category