3v4l.org

run code in 300+ PHP versions simultaneously
<?php function call($o, $arg, $refe, $context) { if (is_array($o)) { $ref = new \ReflectionMethod($o[0], $o[1]); } else { $ref = new \ReflectionMethod($o, '__invoke'); } return $ref->invokeArgs($o); } class Foo_630ce62de0a20b75afc96e69c78fe466 { private function foo() { return 'foo'; } public function __invoke() { $a = array($this, 'foo'); return call($a, array(), array(), isset($this) ? $this : null); } } $a = new Foo_630ce62de0a20b75afc96e69c78fe466(); echo call($a, array(), array(), isset($this) ? $this : null);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: ReflectionMethod::invokeArgs() expects exactly 2 arguments, 1 given in /in/FTQtN:10 Stack trace: #0 /in/FTQtN(10): ReflectionMethod->invokeArgs(Object(Foo_630ce62de0a20b75afc96e69c78fe466)) #1 /in/FTQtN(26): call(Object(Foo_630ce62de0a20b75afc96e69c78fe466), Array, Array, NULL) #2 {main} thrown in /in/FTQtN on line 10
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:
38.21 ms | 401 KiB | 8 Q