3v4l.org

run code in 300+ PHP versions simultaneously
<?php class a { } class b extends a { protected $object; public function __construct() { $this->object = new stdClass(); $this->object->name = "default"; } public function setObject(a $object) { $this->object = $object; } public function getObject() { return $this->object; } public function __clone() { $this->object = clone $this->object; } } class runner { public $target; public function __construct() { $this->target = new b(); } public function run() { $object1 = new a(); $object1->name = "object1"; $object2 = new a(); $object2->name = "object2"; if (1 == 2) { // } elseif ($object1 instanceof $this->target->object) { $b2 = clone $this->target; $b2->object = $object1; echo $b2->getObject()->name; } } } $runner = new runner(); $runner->run();
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Creation of dynamic property a::$name is deprecated in /in/8un1E on line 40 Deprecated: Creation of dynamic property a::$name is deprecated in /in/8un1E on line 42 Fatal error: Uncaught Error: Cannot access protected property b::$object in /in/8un1E:47 Stack trace: #0 /in/8un1E(57): runner->run() #1 {main} thrown in /in/8un1E on line 47
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:
43.85 ms | 401 KiB | 8 Q