リクエストURIを自動的にerror_log()
出力に追加する方法はありますか? エラーは現在次のようになっています。
[03-Dec-2012 13:56:22] PHP Fatal error: Call to a member function getStories()
on a non-object in /usr/share/php/MyProject/Model/Index.php on line 148
そこにURLを取得する方法はありますか?
リクエストURIを自動的にerror_log()
出力に追加する方法はありますか? エラーは現在次のようになっています。
[03-Dec-2012 13:56:22] PHP Fatal error: Call to a member function getStories()
on a non-object in /usr/share/php/MyProject/Model/Index.php on line 148
そこにURLを取得する方法はありますか?
お役に立てれば:
function debugErrorHandler($errno, $errstr, $errfile, $errline)
{
if(error_reporting()!==0)
{
switch($errno)
{
default:
error_log("PHP Warning Debug: Server Request URI: " .
print_r($_SERVER["REQUEST_URI"], true));
break;
}
return false; // false -> Execute PHP internal error handler
}
}