3v4l.org

run code in 500+ PHP versions simultaneously
<?php function handleError($errno, $errstr, $errfile, $errline) { global $php_errormsg; var_dump($php_errormsg); var_dump(error_get_last()); } function shutdownFunc() { var_dump(error_get_last()); } set_error_handler('handleError'); register_shutdown_function('shutdownFunc'); if ($x) { echo "x\n"; } else { echo "no x\n"; } var_dump(error_get_last()); nosuchfunc();
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.6 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.31, 8.3.0 - 8.3.31, 8.4.1 - 8.4.22, 8.5.0 - 8.5.7
NULL NULL no x NULL Fatal error: Uncaught Error: Call to undefined function nosuchfunc() in /in/QKQKY:25 Stack trace: #0 {main} thrown in /in/QKQKY on line 25 array(4) { ["type"]=> int(1) ["message"]=> string(103) "Uncaught Error: Call to undefined function nosuchfunc() in /in/QKQKY:25 Stack trace: #0 {main} thrown" ["file"]=> string(9) "/in/QKQKY" ["line"]=> int(25) }
Process exited with code 255.
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.21
NULL NULL no x NULL Fatal error: Call to undefined function nosuchfunc() in /in/QKQKY on line 25 array(4) { ["type"]=> int(1) ["message"]=> string(39) "Call to undefined function nosuchfunc()" ["file"]=> string(9) "/in/QKQKY" ["line"]=> int(25) }
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
NULL Fatal error: Call to undefined function error_get_last() in /in/QKQKY on line 7 Fatal error: Call to undefined function error_get_last() in /in/QKQKY on line 11
Process exited with code 255.
Output for 4.4.5 - 4.4.9
NULL Fatal error: Call to undefined function: error_get_last() in /in/QKQKY on line 7 Fatal error: Call to undefined function: error_get_last() in /in/QKQKY on line 11
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
NULL Fatal error: Call to undefined function: error_get_last() in /in/QKQKY on line 7 Fatal error: Call to undefined function: error_get_last() in /in/QKQKY on line 11
Process exited with code 255.
Output for 4.3.0 - 4.3.1
NULL Fatal error: Call to undefined function: error_get_last() in /in/QKQKY on line 7 Fatal error: Call to undefined function: error_get_last() in /in/QKQKY on line 11

preferences:
104.82 ms | 2172 KiB | 4 Q