我想捕获所有错误,并根据其类型执行某种操作。我想处理以下类型的错误:
我可以使用set_error_handler()函数执行这些操作吗?
E_USER_WARNING和E_WARNING之间有什么区别吗?
答案 0 :(得分:3)
这是一个源自the PHP manual的简单示例:
<?php
error_reporting(0);
set_error_handler('handle_error', E_ALL);
function handle_error($errno, $errmsg, $filename, $linenum, $vars) {
$errors = array(
E_ERROR => 'Error',
E_WARNING => 'Warning',
E_PARSE => 'Parsing Error',
E_NOTICE => 'Notice',
E_CORE_ERROR => 'Core Error',
E_CORE_WARNING => 'Core Warning',
E_COMPILE_ERROR => 'Compile Error',
E_COMPILE_WARNING => 'Compile Warning',
E_USER_ERROR => 'User Error',
E_USER_WARNING => 'User Warning',
E_USER_NOTICE => 'User Notice',
E_STRICT => 'Runtime Notice',
E_RECOVERABLE_ERROR => 'Catchable Fatal Error'
);
if(in_array($errno, array_keys($errors))) {
echo $errors[$errno];
}
}
$foo = NOT_DEFINED;
将输出错误类型。