update page now
PHP 8.4.20 Released!

Voting

: max(nine, eight)?
(Example: nine)

The Note You're Voting On

eliasritter168667 at gmail dot com
2 years ago
This function helps if you want to prepend a key and value pair to the beginning of an array:

function array_kunshift(array $array, string|int $key, mixed $value): array {
        return array_merge([$key => $value], $array);
    }

<< Back to user notes page

To Top