3v4l.org

run code in 300+ PHP versions simultaneously
<?php function a() { return b(); } function b() { return c(); } function c() { return new Exception(); } $e = a(); echo "After a(), before throw\n"; throw $e;
Output for 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
After a(), before throw Fatal error: Uncaught Exception in /in/rbo6N:15 Stack trace: #0 /in/rbo6N(10): c() #1 /in/rbo6N(5): b() #2 /in/rbo6N(18): a() #3 {main} thrown in /in/rbo6N on line 15
Process exited with code 255.

preferences:
99.15 ms | 1420 KiB | 4 Q