3v4l.org

run code in 300+ PHP versions simultaneously
<?php function handler1() { echo "\n######### " . __FUNCTION__ . "() called #########\n"; } function handler2() { echo "\n######### " . __FUNCTION__ . "() called #########\n"; } set_exception_handler('handler1'); set_exception_handler('handler2'); if(true) { throw new Exception('x'); } else { new foo(); }

preferences:
35.99 ms | 402 KiB | 5 Q