PHP 8.4.24 Released!

Voting

: min(zero, six)?
(Example: nine)

The Note You're Voting On

contacto at hardcode dot com dot ar
17 years ago
need a case insensitive sort by key function? i did and couldn find it, so:

<?php
function insensitive_uksort($a,$b) {
    return strtolower($a)<strtolower($b);
}
uksort($arr, "insensitive_uksort");
?>

<< Back to user notes page

To Top