3v4l.org

run code in 300+ PHP versions simultaneously
<?php try { echo "Outer try\n"; try { echo " Middle try\n"; throw new Exception(); } finally { echo " Middle finally\n"; try { echo " Inner try\n"; } finally { echo " Inner finally\n"; } } echo "Outer shouldnt get here\n"; } catch (Exception $e) { echo "Outer catch\n"; } finally { echo "Outer finally\n"; }
Output for 5.6.12 - 5.6.30, 7.0.0 - 7.0.26, 7.1.0 - 7.1.12, 7.2.29 - 7.2.33, 7.3.16 - 7.3.33, 7.4.3 - 7.4.33, 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
Outer try Middle try Middle finally Inner try Inner finally Outer catch Outer finally
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 Outer try Middle try Middle finally Inner try Inner finally Outer catch Outer finally
Output for 5.6.0 - 5.6.11
Outer try Middle try Middle finally Inner try Inner finally Outer shouldnt get here Outer finally
Output for 5.5.16 - 5.5.38
Outer try Middle try Middle finally Inner try Inner finally Outer shouldnt get here Outer finally Fatal error: Uncaught exception 'Exception' in /in/3UF6O:6 Stack trace: #0 {main} thrown in /in/3UF6O on line 6
Process exited with code 255.
Output for 5.5.0 - 5.5.15
Outer try Middle try Middle finally Inner try Inner finally
Process exited with code 137.
Output for 5.4.0 - 5.4.45
Parse error: syntax error, unexpected 'finally' (T_STRING), expecting catch (T_CATCH) in /in/3UF6O on line 7
Process exited with code 255.
Output for 5.3.29
Parse error: syntax error, unexpected T_STRING, expecting T_CATCH in /in/3UF6O on line 7
Process exited with code 255.

preferences:
211.35 ms | 401 KiB | 293 Q