3v4l.org

run code in 300+ PHP versions simultaneously
<?php function call($o, $args, $refe, $context) { if (is_array($o)) { $ref = new ReflectionMethod($o[0], $o[1]); } else { $ref = new ReflectionMethod($o, '__invoke'); } return $ref->invokeArgs($o, $args); } 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 TypeError: ReflectionMethod::invokeArgs(): Argument #1 ($object) must be of type ?object, array given in /in/Aq75G:10 Stack trace: #0 /in/Aq75G(10): ReflectionMethod->invokeArgs(Array, Array) #1 /in/Aq75G(22): call(Array, Array, Array, Object(Foo_630ce62de0a20b75afc96e69c78fe466)) #2 [internal function]: Foo_630ce62de0a20b75afc96e69c78fe466->__invoke() #3 /in/Aq75G(10): ReflectionMethod->invokeArgs(Object(Foo_630ce62de0a20b75afc96e69c78fe466), Array) #4 /in/Aq75G(26): call(Object(Foo_630ce62de0a20b75afc96e69c78fe466), Array, Array, NULL) #5 {main} thrown in /in/Aq75G 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:
34.82 ms | 402 KiB | 8 Q