3v4l.org

run code in 300+ PHP versions simultaneously
<?php class StaticA { function dosomething(){ $this->email = "e@01art.de"; $obj = new static; $obj->email = "e@01art.de"; $obj->classInfo(); } function classInfo(){ echo get_class(new static). "\n"; echo $obj::email; } } class StaticB extends StaticA { function test(){ //echo get_class(new self). "\n"; parent::classInfo(); } function doit(){ parent::dosomething(); } } $object = new StaticB(); $object->doit();
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Creation of dynamic property StaticB::$email is deprecated in /in/k4Jva on line 6 Deprecated: Creation of dynamic property StaticB::$email is deprecated in /in/k4Jva on line 8 StaticB Warning: Undefined variable $obj in /in/k4Jva on line 14 Fatal error: Uncaught Error: Class name must be a valid object or a string in /in/k4Jva:14 Stack trace: #0 /in/k4Jva(9): StaticA->classInfo() #1 /in/k4Jva(25): StaticA->dosomething() #2 /in/k4Jva(31): StaticB->doit() #3 {main} thrown in /in/k4Jva on line 14
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:
54.72 ms | 402 KiB | 8 Q