3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public function __construct() { switch (func_num_args()) { case 2: var_dump(func_get_arg(0)); var_dump(func_get_arg(1)); break; case 4: var_dump(func_get_arg(0)); var_dump(func_get_arg(1)); var_dump(func_get_arg(2)); var_dump(func_get_arg(3)); break; default: throw new Exception('Wrong number of arguments'); break; } } } $a = new Foo('foo', 'bar'); $b = new Foo('foo', 'bar', 'baz', 'qux'); $c = new Foo('foo', 'bar', 'baz');
Output for git.master, git.master_jit, rfc.property-hooks
string(3) "foo" string(3) "bar" string(3) "foo" string(3) "bar" string(3) "baz" string(3) "qux" Fatal error: Uncaught Exception: Wrong number of arguments in /in/qGbi5:17 Stack trace: #0 /in/qGbi5(25): Foo->__construct('foo', 'bar', 'baz') #1 {main} thrown in /in/qGbi5 on line 17
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:
47.04 ms | 401 KiB | 8 Q