3v4l.org

run code in 300+ PHP versions simultaneously
<?php function some_call() { throw new Exception( 'haha' ); } function some_catcher( Exception $excpt ) { echo 'Got it!'; } set_exception_handler( 'some_catcher' ); try { some_call(); } catch ( Exception $e ) { throw $e; }

preferences:
41.5 ms | 402 KiB | 5 Q