3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public function __construct($a, $b) { var_dump($a, $b); } } class Bar extends Foo{ public function __construct($a) { var_dump($a); parent::__construct($a); } } class Baz extends Bar{ public function __construct($a, $b) { Foo::__construct($a, $b); parent::__construct($a); } } $baz = new Baz("foo", "bar");
Output for git.master, git.master_jit, rfc.property-hooks
string(3) "foo" string(3) "bar" string(3) "foo" Fatal error: Uncaught ArgumentCountError: Too few arguments to function Foo::__construct(), 1 passed in /in/LOhOL on line 14 and exactly 2 expected in /in/LOhOL:4 Stack trace: #0 /in/LOhOL(14): Foo->__construct('foo') #1 /in/LOhOL(22): Bar->__construct('foo') #2 /in/LOhOL(26): Baz->__construct('foo', 'bar') #3 {main} thrown in /in/LOhOL on line 4
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:
59.68 ms | 402 KiB | 8 Q