<?php set_exception_handler(function($e){ echo "exception handled"; // not echoed }); register_shutdown_function(function(){ throw new Exception("test"); // this should be caught by the exception handler above, but it doesn't });
You have javascript disabled. You will not be able to edit any code.