我有这段代码,如何将 error_handler 设置为所有函数。现在只有在 foo1 和 foo2 之外发生错误时才会调用 error_handler。
set_error_handler('error_handler',-1 & ~E_NOTICE & ~E_USER_NOTICE);
function error_handler($exception) {
// log the error
}
function foo1(){
throw new Exception("Error validating user input.");
exit(0);
}
function foo2(){
throw new Exception("Error validating user input.");
exit(0);
}