3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_any($arr, Callable $pred) { foreach ($arr as $elt) { if ($pred($elt)) { return true; } } return false; } $one = 'test'; $two = ''; $three = 'test'; var_dump(array_any([$one, $two, $three], 'empty'));

preferences:
46.05 ms | 402 KiB | 5 Q