這篇文章主要介紹了PHP配置把錯誤日志以郵件方式發送方法(Windows系統),本文給出了配置示例和使用例子,需要的朋友可以參考下
當系統發生了很嚴重的問題,需要立刻發送給管理員。可以通過 error_log() 將錯誤以郵件形式發送到郵箱。
在 php.ini 中設置:
代碼如下:
sendmail_from = [email protected]
然後設置:
代碼如下:
sendmail_path = "G:sendmailsendmail.exe -t"
其中:G:sendmailsendmail.exe 是郵件客戶端的地址。
代碼:
代碼如下:
//關閉錯誤顯示
ini_set('display_errors', 0);
//開啟錯誤日志功能
ini_set('log_errors', 'on');
//顯示所有錯誤
error_reporting(-1);
//發送錯誤
error_log('當前系統被攻擊,產生了致命錯誤', 1, '[email protected]'); //參數 1 表示以郵件形式發送錯誤