的文件名,默認情況下PHP日誌幾個類型的錯誤中的error_log文件,但我使用自定義錯誤功能。這裏是我的代碼 -如何找到行號和錯誤
<?php set_error_handler("customError",E_ALL);
function customError($errno, $errstr)
{
$e=$errno . ",". $errstr;
error_log($e);
die('<h4>An Error occurred.Don't worry just <a href="javascript:location.reload(true);">Refresh this Page</a>. </h4>');
}
我要記錄的行錯誤日誌文件中的編號和腳本名稱。以上代碼僅記錄錯誤編號和錯誤str。如何使用上述代碼記錄錯誤的腳本名稱和行號。
-1 [RTFM(HTTP:// PHP。 net/manual/en/function.set-error-handler.php) – Leri