3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler(function ($errno, $errstr, $errfile, $errline) { $namespace = 'ajf\ErrorExceptions\Dynamic'; $className = implode('', explode(' ', ucwords($errstr))); $fullClassName = $namespace . '\\' . $className; if (!class_exists($fullClassName)) { eval("namespace $namespace { class $className extends \ErrorException {} }"); } throw new $fullClassName($errstr, 0, $errno, $errfile, $errline); }); try { $foo = 1/0; } catch (ajf\ErrorExceptions\Dynamic\DivisionByZero $e) { echo "ba-da-bing, ba-da-boom: I caught a $e!\n"; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/WVBHX:15 Stack trace: #0 {main} thrown in /in/WVBHX on line 15
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33
ba-da-bing, ba-da-boom: I caught a ajf\ErrorExceptions\Dynamic\DivisionByZero: Division by zero in /in/WVBHX:15 Stack trace: #0 /in/WVBHX(15): {closure}(2, 'Division by zer...', '/in/WVBHX', 15, Array) #1 {main}!
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
ba-da-bing, ba-da-boom: I caught a exception 'ajf\ErrorExceptions\Dynamic\DivisionByZero' with message 'Division by zero' in /in/WVBHX:15 Stack trace: #0 /in/WVBHX(15): {closure}(2, 'Division by zer...', '/in/WVBHX', 15, Array) #1 {main}!

preferences:
158.82 ms | 402 KiB | 184 Q