3v4l.org

run code in 300+ PHP versions simultaneously
<?php $success=false; if (true) { set_error_handler(function($a, $b, $c, $d) { var_dump('error_handler', $a, $b, $c, $d); throw new ErrorException($a, $b, $c, $d); }); register_shutdown_function(function(){ if ($GLOBALS['success']){return;} var_dump('shutdown_function', error_get_last()); }); } $var = 1; try { // $var->method(); // Throws an Error object in PHP 7. $buf.='nyanpasu'; /* } catch (Error $e) { // Handle error var_dump('error', $e); */ } catch (Exception $e) { // Handle error var_dump('exception', $e); } $success=true; ?>
Output for git.master, git.master_jit, rfc.property-hooks
string(13) "error_handler" int(2) string(23) "Undefined variable $buf" string(9) "/in/OtM0R" int(19) Fatal error: Uncaught TypeError: ErrorException::__construct(): Argument #2 ($code) must be of type int, string given in /in/OtM0R:6 Stack trace: #0 /in/OtM0R(6): ErrorException->__construct('2', 'Undefined varia...', '/in/OtM0R', 19) #1 /in/OtM0R(19): {closure}(2, 'Undefined varia...', '/in/OtM0R', 19) #2 {main} thrown in /in/OtM0R on line 6 string(17) "shutdown_function" array(4) { ["type"]=> int(1) ["message"]=> string(310) "Uncaught TypeError: ErrorException::__construct(): Argument #2 ($code) must be of type int, string given in /in/OtM0R:6 Stack trace: #0 /in/OtM0R(6): ErrorException->__construct('2', 'Undefined varia...', '/in/OtM0R', 19) #1 /in/OtM0R(19): {closure}(2, 'Undefined varia...', '/in/OtM0R', 19) #2 {main} thrown" ["file"]=> string(9) "/in/OtM0R" ["line"]=> int(6) }
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:
57.16 ms | 402 KiB | 8 Q