3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_some(callable $callback,$arr){ foreach($arr as $ele){ if(call_user_func($callback,$ele)){ return true; } } return false; } function array_every(callable $callback,$arr){ foreach($arr as $ele){ if(!call_user_func($callback,$ele)){ return false; } } return true; } function my_callback($ele){ return $ele % 2 == 0; } var_dump(array_some('my_callback',[1,2,3,4,5,6,7,8,9,10])); var_dump(array_some('my_callback',[1,3,5,7])); var_dump(array_every('my_callback',[1,2,3,4,5,6,7,8,9,10])); var_dump(array_every('my_callback',[0,2,4,6,8]));
Output for git.master, git.master_jit, rfc.property-hooks
bool(true) bool(false) bool(false) bool(true)

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
116.67 ms | 405 KiB | 5 Q