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"; } try { $repent = sin("123abc"); } catch (ajf\ErrorExceptions\Dynamic\ANonWellFormedNumericStringEncountered $e) { echo "praise be to zend_is_numeric_string_ex: $e"; }
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.4, 8.3.6
Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/uYQ1n:15 Stack trace: #0 {main} thrown in /in/uYQ1n on line 15
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/uYQ1n:15 Stack trace: #0 {main} thrown in /in/uYQ1n on line 15
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 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/uYQ1n:15 Stack trace: #0 /in/uYQ1n(15): {closure}(2, 'Division by zer...', '/in/uYQ1n', 15, Array) #1 {main}! Fatal error: Uncaught ajf\ErrorExceptions\Dynamic\ANonWellFormedNumericValueEncountered: A non well formed numeric value encountered in /in/uYQ1n:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/uYQ1n', 21, Array) #1 /in/uYQ1n(21): sin('123abc') #2 {main} thrown in /in/uYQ1n on line 21
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
ba-da-bing, ba-da-boom: I caught a exception 'ajf\ErrorExceptions\Dynamic\DivisionByZero' with message 'Division by zero' in /in/uYQ1n:15 Stack trace: #0 /in/uYQ1n(15): {closure}(2, 'Division by zer...', '/in/uYQ1n', 15, Array) #1 {main}! Fatal error: Uncaught exception 'ajf\ErrorExceptions\Dynamic\ANonWellFormedNumericValueEncountered' with message 'A non well formed numeric value encountered' in /in/uYQ1n:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/uYQ1n', 21, Array) #1 /in/uYQ1n(21): sin('123abc') #2 {main} thrown in /in/uYQ1n on line 21
Process exited with code 255.

preferences:
217.03 ms | 402 KiB | 330 Q