3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ALL); ini_set('display_errors',1); function callMe(){ throw new Exception('I am an exception'); return 'I RETURNED A STRING'; } try { var_dump(callMe()); } catch (\Exception $e){ var_dump($e); } // try uncatched also var_dump(callMe());
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.4, 8.3.6 - 8.3.25, 8.4.1 - 8.4.12
object(Exception)#1 (7) { ["message":protected]=> string(17) "I am an exception" ["string":"Exception":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/gPnHd" ["line":protected]=> int(6) ["trace":"Exception":private]=> array(1) { [0]=> array(4) { ["file"]=> string(9) "/in/gPnHd" ["line"]=> int(13) ["function"]=> string(6) "callMe" ["args"]=> array(0) { } } } ["previous":"Exception":private]=> NULL } Fatal error: Uncaught Exception: I am an exception in /in/gPnHd:6 Stack trace: #0 /in/gPnHd(20): callMe() #1 {main} thrown in /in/gPnHd on line 6
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 object(Exception)#1 (7) { ["message":protected]=> string(17) "I am an exception" ["string":"Exception":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/gPnHd" ["line":protected]=> int(6) ["trace":"Exception":private]=> array(1) { [0]=> array(4) { ["file"]=> string(9) "/in/gPnHd" ["line"]=> int(13) ["function"]=> string(6) "callMe" ["args"]=> array(0) { } } } ["previous":"Exception":private]=> NULL } Fatal error: Uncaught Exception: I am an exception in /in/gPnHd:6 Stack trace: #0 /in/gPnHd(20): callMe() #1 {main} thrown in /in/gPnHd on line 6
Process exited with code 255.

preferences:
146.53 ms | 409 KiB | 5 Q