PHP 8.4.24 Released!

Voting

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

The Note You're Voting On

firejox at gmail dot com
3 months ago
There is another Polyfill for PHP < 8.5

<?php
if (!function_exists("array_first")) {
    function array_first(array $array) {
        if (!empty($array)) return current(array_slice($array, 0, 1));
        return null;
    }
}
?>

<< Back to user notes page

To Top