3v4l.org

run code in 300+ PHP versions simultaneously
<?php $simpsons[0] = array("name"=>"Abe","parent"=>-1); $simpsons[1] = array("name"=>"Homer","parent"=>0); // Homer's parent is Abe $simpsons[2] = array("name"=>"Bart","parent"=>1); // Bart's parent is Homer $simpsons[3] = array("name"=>"Lisa","parent"=>1); // Lisa's parent is Homer $simpsons[4] = array("name"=>"Maggie","parent"=>1); // Maggie's parent is Homer function get_children($parent) { foreach ($_GLOBALS['simpsons'] as $index=>$onesimpson) { if ($onesimpson["parent"]==$parent) { echo "$onesimpson[name] is a child of ".$_GLOBALS['simpsons'][$parent]["name"].".<br />\n"; get_children($index); } } } get_children(0); ?>
Output for git.master, git.master_jit
Warning: Undefined variable $_GLOBALS in /in/RK8iV on line 10 Warning: Trying to access array offset on value of type null in /in/RK8iV on line 10 Warning: foreach() argument must be of type array|object, null given in /in/RK8iV on line 10
Output for rfc.property-hooks
Warning: Undefined variable $_GLOBALS in /in/RK8iV on line 10 Warning: Trying to access array offset on null in /in/RK8iV on line 10 Warning: foreach() argument must be of type array|object, null given in /in/RK8iV on line 10

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:
42.41 ms | 401 KiB | 8 Q