3v4l.org

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

preferences:
36.38 ms | 402 KiB | 5 Q