3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Super { public $child; function setChild(Child $child){ echo "setting child to super\n"; $this->child = $child; if($child->getSuper() !== $this) $child->setSuper($this); } function getChild(){ return $this->child; } } class Child { public $super; function setSuper(Super $super){ echo "setting super to child\n"; $this->super = $super; if($super->getChild() !== $this) $this->super->setChild($this); } function getSuper(){ return $this->super; } } $super = new Super; $child = new Child; $super->setChild($child); var_dump($super); $super = new Super; $child = new Child; $child->setSuper($super); var_dump($super);
Output for git.master, git.master_jit, rfc.property-hooks
setting child to super setting super to child object(Super)#1 (1) { ["child"]=> object(Child)#2 (1) { ["super"]=> *RECURSION* } } setting super to child setting child to super object(Super)#3 (1) { ["child"]=> object(Child)#4 (1) { ["super"]=> *RECURSION* } }

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