Source Code:
(back to article)
<?php $fruits = ["apple", "banana", "cherry", "date", "elderberry"]; rsort($fruits, SORT_STRING); print_r($fruits);
Result:
Report an issue