3v4l.org

run code in 300+ PHP versions simultaneously
<?php class b { protected $object; public function __construct() { $this->object = new stdClass(); $this->object->name = "default"; } public function setObject(stdClass $object) { $this->object = $object; } public function getObject() { return $this->object; } public function __clone() { $this->object = clone $this->object; } } class runner { public function run() { $object1 = new stdClass(); $object1->name = "object1"; $object2 = new stdClass(); $object2->name = "object2"; $b1 = new b(); $b1->setObject($object2); if ($object1 instanceof $b1->object) { $b2 = clone $b1; $b2->object = $object1; echo $b2->getObject()->name; } } } $runner = new runner(); $runner->run();
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Cannot access protected property b::$object in /in/eqXfP:36 Stack trace: #0 /in/eqXfP(46): runner->run() #1 {main} thrown in /in/eqXfP on line 36
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:
50.13 ms | 401 KiB | 8 Q