3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler(function ($errno, $errstr, $errfile, $errline) { $namespace = 'ajf\ErrorExceptions\Dynamic'; $className = preg_replace('/[^a-zA-Z0-9]/', '', preg_replace('/\:.*$/', '', 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"; } try { $repent = sin("123abc"); } catch (ajf\ErrorExceptions\Dynamic\ANonWellFormedNumericValueEncountered $e) { echo "praise be to zend_is_numeric_string_ex: $e"; } try { $empty = []; $void = $empty["soul"]; } catch (ajf\ErrorExceptions\Dynamic\UndefinedOffset $e) { echo "not even the colon can defeat me: $e"; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/AkZqJ:15 Stack trace: #0 {main} thrown in /in/AkZqJ on line 15
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 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/AkZqJ:15 Stack trace: #0 /in/AkZqJ(15): {closure}(2, 'Division by zer...', '/in/AkZqJ', 15, Array) #1 {main}! praise be to zend_is_numeric_string_ex: ajf\ErrorExceptions\Dynamic\ANonWellFormedNumericValueEncountered: A non well formed numeric value encountered in /in/AkZqJ:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/AkZqJ', 21, Array) #1 /in/AkZqJ(21): sin('123abc') #2 {main} Fatal error: Uncaught ajf\ErrorExceptions\Dynamic\UndefinedIndex: Undefined index: soul in /in/AkZqJ:28 Stack trace: #0 /in/AkZqJ(28): {closure}(8, 'Undefined index...', '/in/AkZqJ', 28, Array) #1 {main} thrown in /in/AkZqJ on line 28
Process exited with code 255.
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/AkZqJ:15 Stack trace: #0 /in/AkZqJ(15): {closure}(2, 'Division by zer...', '/in/AkZqJ', 15, Array) #1 {main}! praise be to zend_is_numeric_string_ex: exception 'ajf\ErrorExceptions\Dynamic\ANonWellFormedNumericValueEncountered' with message 'A non well formed numeric value encountered' in /in/AkZqJ:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/AkZqJ', 21, Array) #1 /in/AkZqJ(21): sin('123abc') #2 {main} Fatal error: Uncaught exception 'ajf\ErrorExceptions\Dynamic\UndefinedIndex' with message 'Undefined index: soul' in /in/AkZqJ:28 Stack trace: #0 /in/AkZqJ(28): {closure}(8, 'Undefined index...', '/in/AkZqJ', 28, Array) #1 {main} thrown in /in/AkZqJ on line 28
Process exited with code 255.

preferences:
173.4 ms | 402 KiB | 209 Q