PHP-自定义错误处理程序不会调用方法

时间:2018-07-03 18:42:52

标签: php error-handling

我是错误处理技术的新手。我只是按照下面的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)

?>

0 个答案:

没有答案