Source Code:
(back to article)
<?php $numbers = [10, 5, 8, 20, 15]; rsort($numbers, SORT_NUMERIC); print_r($numbers);
Result:
Report an issue