3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait foo { public function bar() { echo 'foo->bar', "\n"; } } trait baz { // use foo { // foo::bar as foo_bar; //} use foo; public function bar() { //$this->foo_bar(); $this->foo::bar(); echo 'baz->bar', "\n"; } } class bar { use baz; public function call_bar() { $this->bar(); } } $obj=new bar(); $obj->call_bar();
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined property: bar::$foo in /in/p2VQX on line 21 Fatal error: Uncaught Error: Class name must be a valid object or a string in /in/p2VQX:21 Stack trace: #0 /in/p2VQX(31): bar->bar() #1 /in/p2VQX(36): bar->call_bar() #2 {main} thrown in /in/p2VQX on line 21
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:
42.21 ms | 401 KiB | 8 Q