自动记录PHP中的所有错误,警告和通知

时间:2012-08-24 05:10:45

标签: php error-handling

我正在寻找一种方法,使用一行代码自动记录所有错误。如果您了解Asp.NET,您可能知道使用Application_Error事件处理程序的意思。

我在SO中检查了PHP Logging framework?个问题,但它们看起来都一样,你应该手动记录每个日志消息,这意味着我需要在我想要记录的任何地方调用日志功能。

我正在寻找的不是这样的东西(KLogger使用的)

require_once 'KLogger.php';
...
$log = new KLogger ( "log.txt" , KLogger::DEBUG );

// Do database work that throws an exception
$log->LogError("An exception was thrown in ThisFunction()");

// Print out some information
$log->LogInfo("Internal Query Time: $time_ms milliseconds");

// Print out the value of some variables
$log->LogDebug("User Count: $User_Count");

1 个答案:

答案 0 :(得分:6)

您可以在PHP中创建自己的自定义错误处理函数,并将其设置为错误处理程序

类似的东西:

function handle_error($error_level,$error_message)
{
    /*
    here do what you want...typically log it into db/file/send out 
    emails based on error level etc..
    */
}

并将此函数设置为PHP的默认错误处理程序,添加以下行:

set_error_handler("handle_error"); 

现在,PHP将根据handle_error

中的内容处理所有错误