3v4l.org

run code in 300+ PHP versions simultaneously
<?php function decorate(callable $fn, callable $decorator) { $wrapper = $decorator($fn); return function() use ($wrapper) { return call_user_func_array($wrapper, func_get_args()); }; } 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(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/lrk7A:14 Stack trace: #0 /in/lrk7A(21): foo('bar') #1 /in/lrk7A(8): {closure}('bar') #2 /in/lrk7A(46): {closure}('bar') #3 /in/lrk7A(8): {closure}('bar') #4 /in/lrk7A(56): {closure}('bar') #5 {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:
45.54 ms | 402 KiB | 8 Q