通过电子邮件从用户处获取错误报告令人沮丧。我敢打赌,大多数用户不会向开发人员发送错误报告。因此,我想设置如果用户获得PHP错误代码,我想通过电子邮件自动获取错误报告。
有没有办法在PHP或CodeIgniter中获取用户错误报告?
谢谢。
答案 0 :(得分:1)
您可以这样做:
<?php
// Our custom error handler
function email_error_handler($number, $message, $file, $line, $vars)
{
$email = "
<p>An error ($number) occurred on line
<strong>$line</strong> and in the <strong>file: $file.</strong>
<p> $message </p>";
$email .= "<pre>" . print_r($vars, 1) . "</pre>";
$headers = 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Email the error to someone...
error_log($email, 1, 'you@youremail.com', $headers);
// Make sure that you decide how to respond to errors (on the user's side)
// Either echo an error message, or kill the entire project. Up to you...
// The code below ensures that we only "die" if the error was more than
// just a NOTICE.
if ( ($number !== E_NOTICE) && ($number < 2048) ) {
die("There was an error. Please try again later.");
}
}
// We should use our custom function to handle errors.
set_error_handler('email_error_handler');
// Trigger an error... (var doesn't exist)
echo $somevarthatdoesnotexist;
答案 1 :(得分:0)
PHP通常会记录到apache错误日志(如果你使用的是apache),通常是/var/log/httpd/error_log.
CodeIgniter的错误日志(如果在config.php中启用)默认设置为application/log/date.php
(日期为今天的日期)。
如果需要,您可以设置一个cron,每隔一小时通过电子邮件向您发送一个(或两个)文件中的新更改。或者,您可以使用PHP中的set_error_handler
函数创建自己的PHP错误处理程序。
编辑:mbinette粘贴了一个使用PHP的set_error_handler
函数的好例子。一个警告,这不会让你知道致命的500错误,错误日志会。
答案 2 :(得分:0)
您可以查看有关错误报告的codeigniter文档 http://ellislab.com/codeigniter/user-guide/general/errors.html
有关于error_reporting()函数的提及,可能你可以破解它并做你的电子邮件。