0

我正在为我的项目使用 zend 框架 1.12。我想捕获所有类型的致命错误并将它们发送到电子邮件地址以进行快速修复。为此,我在 Bootstrap.php 文件中编写了下面提到的代码。

protected function _initFatalErrorCatcher()
{
    register_shutdown_function(array($this, 'errorlogHandler'));
}

public function errorlogHandler()
{
    $e = error_get_last();

if (!is_null($e)) { //fatal error

    $msg  = 'Fatal error: ' . $e['message'];
    $msg .= ' in' . $e['file'];
    $msg .= ' on line: ' . $e['line'];

    $mail = new Zend_Mail('utf-8');
    $mail->setBodyHtml($msg);
    $mail->setFrom('zzz@z.com');
    $mail->addTo('yyy@y.com');
    $mail->setSubject('check this error');

    $mail->send();
    }
}

使用上面的代码,我可以向电子邮件发送除数据库连接相关错误和查询相关错误之外的致命错误。我也遵循了Catch Zend PDO Exception的说明,但我相信我遗漏了一些东西,因为它不起作用。

对此的任何帮助将不胜感激。

编辑:

我还使用 Zend_Log 将错误日志写入日志文件。但是,使用这个我找不到写致命错误的方法。代码如下。

$writer = new Zend_Log_Writer_Stream(APPLICATION_PATH  . "/../data/log-file.log");
$errors = $this->_getParam('error_handler');
$exception = $errors->exception;

$log = new Zend_Log($writer);
$log->debug($exception->getMessage() . "\n" . $exception->getTraceAsString());

数据库连接相关问题的场景:

如果主机名、数据库名或用户名有任何错误,它会在浏览器中显示一个致命错误,如下所示。但它没有被 register_shutdown_function() 或 Zend_Log() 检测到。

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000] [1044] Access denied for user 'AAAA'@'%' to database 'BBBB'' in /var/www/project_name/library/Zend/Db/Adapter/Pdo/Abstract.php on line 144 PDOException: SQLSTATE[42000] [1044] Access denied for user 'AAAA'@'%' to database 'BBBB' in /var/www/project_name/library/Zend/Db/Adapter/Pdo/Abstract.php on line 129
4

3 回答 3

1

此处的帖子显示了一个示例。基本上用于set_error_handler在遇到错误时让 php 抛出异常。此示例来自链接:

<?php
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
    throw new ErrorException($errstr, $errno, 0, $errfile, $errline);
}
set_error_handler("exception_error_handler");

/* Trigger exception */
strpos();
?>  

希望这可以帮助

于 2013-05-13T13:56:36.420 回答
0

//$array 包含插入的值

try {
    $this->db->insert('Users', $array );
} catch (Exception $e){
    echo $e->getMessage();
}
于 2013-05-13T12:19:02.143 回答
0

我已经通过在 Bootstrap.php 文件中编写下面提到的代码来解决它。

protected function _initDbConfig()
{
  $config = new Zend_Config($this->getOptions());
  $params = $config->database->toArray();
  try {
     $db = Zend_Db::factory('Pdo_Mysql', $params);
     $db->getConnection();

  } catch (Zend_Db_Adapter_Exception $e) {
    // perhaps the RDBMS is not running
    // code to send email goes here
  } catch (Zend_Exception $e) {
    // perhaps factory() failed to load the specified Adapter class
    // code to send email goes here         
  }
}

在 application.ini 中,我有以下代码。

database.host     = "localhost"
database.username = "AAAA"
database.password = "*****"
database.dbname   = "BBBBB"
于 2013-05-14T12:29:35.460 回答