我是错误处理技术的新手。我只是按照下面的manual创建了一个自定义错误处理程序,
<?php
public function customErrorHandler($errno, $errstr, $errfile, $errline) {
//log error
}
set_error_handler([$this, 'customErrorHandler'])
?>
这很好。
当我将错误类型设置为false时,不会调用我的自定义错误处理程序方法!我不知道自从处理错误以来缺少什么。
<?php
public function customErrorHandler($errno, $errstr, $errfile, $errline) {
//log error
}
set_error_handler([$this, 'customErrorHandler'], false)
?>