PHP 8.5.0 Beta 1 available for testing

Voting

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

The Note You're Voting On

ale152
16 years ago
Note: negatives number.
<?php
$a
= array(-5,-2,3,9);
natsort($a);
print_r($a);
?>
Will output:
Array ( [1] => -2 [0] => -5 [2] => 3 [3] => 9 )

<< Back to user notes page

To Top