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\n"; } try { $empty = []; $void = $empty["soul"]; } catch (ajf\ErrorExceptions\Dynamic\UndefinedIndex $e) { echo "not even the colon can defeat me: $e\n"; } try { class FooBar { public function FooBar () {} } } catch (ajf\ErrorExceptions\Dynamic\MethodsWithTheSameNameAsTheirClassWillNotBeConstructorsInAFutureVersionOfPHPFooBarHasADeprecatedConstructor $e) { echo "elePHP4nt: $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.4, 8.3.6
Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/HjEuH:15 Stack trace: #0 {main} thrown in /in/HjEuH 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/HjEuH:15 Stack trace: #0 {main} thrown in /in/HjEuH 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.31, 7.4.0 - 7.4.33
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; FooBar has a deprecated constructor in /in/HjEuH on line 34 ba-da-bing, ba-da-boom: I caught a ajf\ErrorExceptions\Dynamic\DivisionByZero: Division by zero in /in/HjEuH:15 Stack trace: #0 /in/HjEuH(15): {closure}(2, 'Division by zer...', '/in/HjEuH', 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/HjEuH:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/HjEuH', 21, Array) #1 /in/HjEuH(21): sin('123abc') #2 {main} not even the colon can defeat me: ajf\ErrorExceptions\Dynamic\UndefinedIndex: Undefined index: soul in /in/HjEuH:28 Stack trace: #0 /in/HjEuH(28): {closure}(8, 'Undefined index...', '/in/HjEuH', 28, Array) #1 {main}
Output for 7.3.32 - 7.3.33
ba-da-bing, ba-da-boom: I caught a ajf\ErrorExceptions\Dynamic\DivisionByZero: Division by zero in /in/HjEuH:15 Stack trace: #0 /in/HjEuH(15): {closure}(2, 'Division by zer...', '/in/HjEuH', 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/HjEuH:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/HjEuH', 21, Array) #1 /in/HjEuH(21): sin('123abc') #2 {main} not even the colon can defeat me: ajf\ErrorExceptions\Dynamic\UndefinedIndex: Undefined index: soul in /in/HjEuH:28 Stack trace: #0 /in/HjEuH(28): {closure}(8, 'Undefined index...', '/in/HjEuH', 28, 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/HjEuH:15 Stack trace: #0 /in/HjEuH(15): {closure}(2, 'Division by zer...', '/in/HjEuH', 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/HjEuH:21 Stack trace: #0 [internal function]: {closure}(8, 'A non well form...', '/in/HjEuH', 21, Array) #1 /in/HjEuH(21): sin('123abc') #2 {main} not even the colon can defeat me: exception 'ajf\ErrorExceptions\Dynamic\UndefinedIndex' with message 'Undefined index: soul' in /in/HjEuH:28 Stack trace: #0 /in/HjEuH(28): {closure}(8, 'Undefined index...', '/in/HjEuH', 28, Array) #1 {main}

preferences:
158.24 ms | 403 KiB | 183 Q