3v4l.org

run code in 300+ PHP versions simultaneously
<?php function decorate(callable $fn, callable $decorator) { $wrapper = $decorator(); return function() use ($fn, $wrapper) { $gen = $wrapper(); // Only call the wrapped function if the decorator made "yield" if (!$gen instanceof \Generator) { return $gen; } // Use the yielded arguments, forward all if none given. if (is_array($gen->current())) { $arguments = $gen->current(); } else { $arguments = func_get_args(); } // Forward all throwed Exceptions try { // Send the decorated function's return value into the // decorator as return value of "yield" $gen->send(call_user_func_array($fn, $arguments)); } catch (\Exception $e) { $gen->throw($e); } }; } function foo($bar) { throw new Exception("Error $bar!"); } function catch_all_exceptions() { return function() { try { (yield); } catch (\Exception $e) { echo "catch_all_exceptions: Caught Exception: $e\n"; } }; } function do_something_before() { return function() { echo "Before!\n"; return "foo"; }; } $foo = decorate(decorate("foo", "catch_all_exceptions"), "do_something_before"); var_dump($foo("bar"));
Output for git.master, git.master_jit, rfc.property-hooks
Before! string(3) "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:
53.96 ms | 401 KiB | 8 Q