3v4l.org

run code in 300+ PHP versions simultaneously
<?php function decorate(callable $fn) { $decorators = array_slice(func_get_args(), 1); foreach ($decorators as $d) { $wrapper = $d($fn); $fn = $wrapper; } return $wrapper; } function foo($bar) { throw new Exception("Error $bar!"); } function catch_all_exceptions(callable $fn) { return function() use ($fn) { try { return call_user_func_array($fn, func_get_args()); } catch (\Exception $e) { echo "catch_all_exceptions: Caught Exception: $e\n"; } }; } function once(callable $fn) { return function() use ($fn) { static $return; static $called = false; if (!$called) { $return = call_user_func_array($fn, func_get_args()); $called = true; } return $return; }; } function do_something_before(callable $fn) { return function() use ($fn) { echo "Before!\n"; return call_user_func_array($fn, func_get_args()); }; } $bar = decorate(function() { echo "Hello\n"; }, "once"); $bar(); $bar(); $bar(); $foo = decorate("foo", "catch_all_exceptions", "do_something_before"); var_dump($foo("bar"));
Output for git.master, git.master_jit, rfc.property-hooks
Hello Before! catch_all_exceptions: Caught Exception: Exception: Error bar! in /in/AuJfV:17 Stack trace: #0 /in/AuJfV(24): foo('bar') #1 /in/AuJfV(49): {closure}('bar') #2 /in/AuJfV(59): {closure}('bar') #3 {main} NULL

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