Source Code:
(back to article)
<?php $fruits = array("apple" => 2, "banana" => 1, "orange" => 3); arsort($fruits); foreach($fruits as $key => $value) { echo $key . " - " . $value . "\n"; } ?>
Result:
Report an issue