3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace { class Foo_MIXED extends Foo implements \MixinPHP\Mixable { public function bar() { $args = func_get_args(); if (isset($this->__methods__["bar"])) { $cb = $this->__methods__["bar"]; array_unshift($args, function() { return call_user_func_array(array($this, "bar"), func_get_args()); }); } else { $cb = array($this, "bar"); } return call_user_func_array($cb, $args); } public function baz($a, $b, stdClass $c) { $args = func_get_args(); if (isset($this->__methods__["baz"])) { $cb = $this->__methods__["baz"]; array_unshift($args, function() { return call_user_func_array(array($this, "baz"), func_get_args()); }); } else { $cb = array($this, "baz"); } return call_user_func_array($cb, $args); } private $__methods__ = array(); private $__parent__; public function __construct(Foo $object) { $this->__parent__ = $object; } public function mixWith($object) { return \MixinPHP\Mixin::mix($this, $object); } public function __get($name) { return Closure::bind(function() use ($name) { return call_user_func_array(array($this, $name), func_get_args()); }, $this); } public function __set($name, $value) { $this->__methods__[strtolower($name)] = $value; } public function __isset($name) { return isset($this->__methods__[strtolower($name)]); } public function __unset($name) { unset($this->__methods__[strtolower($name)]); } } }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Class "Foo" not found in /in/fqv4R:3 Stack trace: #0 {main} thrown in /in/fqv4R on line 3
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:
40.69 ms | 401 KiB | 8 Q