PHP 8.5.0 Beta 1 available for testing

Voting

: max(one, seven)?
(Example: nine)

The Note You're Voting On

inigo dot grimbergen at gmail dot com
8 years ago
to sort with numeric and empty values and have the smallest on top:
<?php
usort
($list, function($a, $b) {
if(
$a == null && $b != null ) return 1;
if(
$a != null && $b == null ) return -1;
return
$a > $b ? 1 : -1;
});
?>
returns
1
2
3
null
null
null

<< Back to user notes page

To Top