我需要通过扩展应始终处理致命错误的rollbar错误处理程序来创建自定义错误处理程序,但只有在我们处于调试模式时才处理通知错误。在生产模式下,不应在浏览器中显示所有通知错误,而应将其记录在滚动条中并收到通知。任何人都可以提出如何处理此错误处理的想法吗?
我刚刚开始扩展Yii2基本错误处理程序,
<?php
namespace common\components;
class ErrorHandler extends \yii\web\ErrorHandler
{
public function register()
{
ini_set('display_errors', false);
set_exception_handler([$this, 'handleException']);
register_shutdown_function([$this, 'handleFatalError']);
}
}
使用上面的代码,我能够隐藏浏览器的通知错误并登录php错误日志。现在问题是我需要登录滚动条并像往常一样得到通知。
答案 0 :(得分:0)
我用以下代码解决了它。
/**
* Handles PHP execution errors such as warnings and notices.
*
* This method is used as a PHP error handler. It will simply raise an [[ErrorException]].
*
* @param int $code the level of the error raised.
* @param string $message the error message.
* @param string $file the filename that the error was raised in.
* @param int $line the line number the error was raised at.
* @return bool whether the normal error handler continues.
*
* @throws ErrorException
*/
public function handleError($code, $message, $file, $line)
{
if (error_reporting() & $code) {
$exception = new \yii\base\ErrorException($message, $code, $code, $file, $line);
if (YII_ENV_PROD) {
$this->logException($exception);
} else {
throw $exception;
}
}
return false;
}