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'); } $ref->setAccessible(true); return $ref->invokeArgs(is_array($o) ? $o[0] : $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
foo

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