我正在完善一大堆代码。很多它包含许多不影响代码执行的一般警告和注意事项(即:未定义的变量,或没有qoutes的数组键)。
我想写一个功能,让我先把注意力集中在致命的错误上,然后我会把它打开到不那么紧急的警告和通知中。我找到了这个代码,但它通过电子邮件发送每个小警告通知和错误。
http://net.tutsplus.com/tutorials/php/quick-tip-email-error-logs-to-yourself-with-php/
如何修改此代码,使其仅处理以下内容:
答案 0 :(得分:12)
set_error_handler
允许您指定用户定义的错误处理函数,以决定如何处理某些(但仅非致命)错误。然后,您可以以您认为必要的任何方式处理特定类型的错误,例如通过电子邮件通知系统管理员,或保存到特定的日志文件。有关详细信息,请参阅:PHP Doc。
关于您的请求,您可以采用以下方法:
function myErrorHandler($errno, $errstr, $errfile, $errline)
{
if (!(error_reporting() & $errno)) {
// This error code is not included in error_reporting
return;
}
switch ($errno) {
case E_USER_ERROR:
case E_ERROR:
case E_COMPILE_ERROR:
echo "<b>My ERROR</b> [$errno] $errstr<br />\n";
echo " Fatal error on line $errline in file $errfile";
echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />\n";
echo "Aborting...<br />\n";
emailErrorFunction($errno,$erstr,$errfile,$errline);
exit(1);
break;
default:
echo "Unknown error type: [$errno] $errstr<br />\n";
break;
}
/* Don't execute PHP internal error handler */
return true;
}
// Report all errors
error_reporting(E_ALL);
// User a custom error handler to print output
set_error_handler( 'myErrorHandler' );
由于错误处理不适用于致命错误(解析错误,未定义的函数等),因此您需要按照相关问题中的说明使用register_shutdown_function
对其进行录音:
答案 1 :(得分:4)
初始化你的php文件中的函数。
register_shutdown_function('mail_on_error'); //inside your php script
/** If any file having any kind of fatal error, sln team will be notified when cron will
become fail : following is the name of handler and its type
E_ERROR: 1 | E_WARNING: 2 | E_PARSE: 4 | E_NOTICE: 8
*/
function mail_on_error() {
global $objSettings;
$error = error_get_last();
//print_r($error);
if ($error['type'] == 1) {
// update file path into db
$objSettings->update_records($id=1,array('fatal_error' => json_encode($error)));
$exception_in_file_path = __FILE__;
fatal_error_structure($exception_in_file_path);
}// end if
}// end mail_on_error
应在某个全球位置定义 fatal_error_structure
。比如function.inc.php
。这将向注册用户发送电子邮件。
function fatal_error_structure($exception_in_file_path){
$subject = "FATAL: Cron Daemon has failed";
sln_send_mail(nl2br("Please check $exception_in_file_path, This cron having FATAL error."),
$subject, 'email@address.com',$name_reciever='', 'text/plain');
}// end fatal_error_structure
答案 2 :(得分:2)
警告您可以使用(如果您有shell访问权限)日志观察程序shell脚本。这允许捕获任何错误,包括解析错误(使用register_shutdown_function无法捕获)。
#!/bin/bash
tail -f /path_to_error_log/php_error.log|while read LINE;do
if grep -q "PHP (Parse|Fatal) error" <(echo $LINE); then
(
echo "From: server@example.com"
echo "To: me@example.com"
echo "Subject: PHP Error"
echo $LINE
) | sendmail -t
fi
done
这是非常无害的,因为这只是一个副流程,并允许您依赖其他技术(shell脚本或其他),以防由于php环境本身发生错误,您仍然会收到通知。
答案 3 :(得分:1)
查看this
如果您将错误报告设置为
error_reporting(E_ERROR | E_PARSE | E_NOTICE | E_COMPILE_WARNING | E_COMPILE_ERROR);
然后希望它能解决上述问题。