PHP Conference Fukuoka 2025

Voting

: four plus one?
(Example: nine)

The Note You're Voting On

Anonymous
5 days ago
<?php

function array_all(array $array, callable $callback): bool
{
return
array_reduce($array, fn($r, $e) => $r && $callback($e), true);
}

?>

<< Back to user notes page

To Top