Voting

: seven minus five?
(Example: nine)

The Note You're Voting On

bartosz dot f at example dot com
16 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