3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { public function __construct() { echo "A::__construct()\n"; } public function A() { echo "A::A()\n"; } public function callme5() { static::__construct(); } public function callme4() { $classname = get_class($this); $this->$classname(); } } class B extends A { public function __construct() { echo "B::__construct()\n"; } public function B() { echo "B::B()\n"; } } class C extends A { public function __construct() { echo "C::__construct()\n"; } } class D extends A { public function D() { echo "D::D()\n"; } } echo "---A---\n"; $obj = new A(); $obj->callme4(); $obj->callme5(); echo "---B---\n"; $obj = new B(); $obj->callme4(); $obj->callme5(); echo "---C---\n"; $obj = new C(); //$obj->callme4(); // This produces an error $obj->callme5(); echo "---D---\n"; $obj = new D(); $obj->callme4(); $obj->callme5();
Output for git.master, git.master_jit, rfc.property-hooks
---A--- A::__construct() A::A() A::__construct() ---B--- B::__construct() B::B() B::__construct() ---C--- C::__construct() C::__construct() ---D--- A::__construct() D::D() A::__construct()

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:
53.81 ms | 401 KiB | 8 Q