3v4l.org

run code in 300+ PHP versions simultaneously
<?php $simpsons = array(); $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($simpsons, $parent) { foreach ($simpsons as $index=>$onesimpson) { if ($onesimpson["parent"]==$parent) { echo "$onesimpson[name] is a child of ".$simpsons[$parent]["name"].".<br />\n"; get_children($index); } } } get_children($simpsons, 0); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Homer is a child of Abe.<br /> Fatal error: Uncaught ArgumentCountError: Too few arguments to function get_children(), 1 passed in /in/kFFCg on line 14 and exactly 2 expected in /in/kFFCg:10 Stack trace: #0 /in/kFFCg(14): get_children(1) #1 /in/kFFCg(19): get_children(Array, 0) #2 {main} thrown in /in/kFFCg on line 10
Process exited with code 255.

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