有没有办法找出这个警告是否被抑制或没有使用 set_error_handler() 函数?@somethingwrong() 和 somethingwrong() 的代码为 2。但我不想记录所有警告。例如,像 gzuncompress() 这样的一些函数必须以这种方式处理,因为我无法测试有效的输入数据。
$handler = new errorHandler();
error_reporting(0);
set_error_handler(array($handler, 'handle'));
set_exception_handler(array($handler, 'exception'));
register_shutdown_function(array($handler, 'shutdown'));
class errorHandler
{
public function handle($code, $text, $file, $line)
{
if (($code & (E_STRICT | E_NOTICE)) == 0)
$this->log(...);
}
public function exception($exception)
{
...
}
public function shutdown()
{
$e = error_get_last();
if ($e !== NULL)
$this->log($error);
}
}
// the errors
include('notexisting.file'); // should be logged
@gzuncompress('somenonsens'); // should not be logged