3v4l.org

run code in 300+ PHP versions simultaneously
<?php $_POST["balle"]["x"] = 7; $_POST["balle"]["y"] = 32; $_POST["balle"]["z"] = 17; $needle = "z"; //$samp = Check_post($_POST,$needle); if(echo Check_post($_POST,$needle)) echo "123"; function Check_post($array,$needle) { if(is_array($array)) { foreach($array as $key=>$value) { if($key == $needle) { echo "1"; } else { if(is_array($value)) { check_post($value,$needle); } } } } } ?>
Output for 5.4.0 - 5.4.27
Parse error: syntax error, unexpected 'echo' (T_ECHO) in /in/EkF14 on line 16
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_ECHO in /in/EkF14 on line 16
Process exited with code 255.

preferences:
170.85 ms | 1395 KiB | 64 Q