PHP 8.5.0 Alpha 4 available for testing

Voting

: min(two, five)?
(Example: nine)

The Note You're Voting On

rasmus at flajm dot com
21 years ago
To make a reverse function, you can simply:

function rnatsort(&$a){
natsort($a);
$a = array_reverse($a, true);
}

<< Back to user notes page

To Top