3v4l.org

run code in 300+ PHP versions simultaneously
<?php class test { protected $a = '1'; public function a() { print "2"; } public function b() { print $this->a; } public function a1() { static::a(); } public function b1() { static::b(); } } $t = new test(); $t->a(); $t->b(); $t->a1(); $t->b1(); $t::a(); $t::b(); $t::a1(); $t::b1();
Output for git.master, git.master_jit, rfc.property-hooks
2121 Fatal error: Uncaught Error: Non-static method test::a() cannot be called statically in /in/8ArS9:32 Stack trace: #0 {main} thrown in /in/8ArS9 on line 32
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:
30.95 ms | 401 KiB | 8 Q