Source Code:
(back to article)
<?php $fruit = array( "b" => "banana", "d" => "date", "a" => "apple", "c" => "cherry" ); sort($fruit); $sorted_fruit = array_values($fruit); print_r($sorted_fruit); ?>
Result:
Report an issue