PHP 8.5.0 Alpha 4 available for testing

Voting

: five plus zero?
(Example: nine)

The Note You're Voting On

bartosz dot f at example dot com
26 days ago
The function will always return true for empty array.

php > var_dump(array_all([], fn()=> true));
bool(true)
php > var_dump(array_all([], fn()=> false));
bool(true)

<< Back to user notes page

To Top