程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP配置把錯誤日志以郵件方式發送方法(Windows系統),php日志

PHP配置把錯誤日志以郵件方式發送方法(Windows系統),php日志

編輯:關於PHP編程

PHP配置把錯誤日志以郵件方式發送方法(Windows系統),php日志


當系統發生了很嚴重的問題,需要立刻發送給管理員。可以通過 error_log() 將錯誤以郵件形式發送到郵箱。

在 php.ini 中設置:
復制代碼 代碼如下:
sendmail_from = [email protected]

然後設置:
復制代碼 代碼如下:
sendmail_path = "G:\sendmail\sendmail.exe -t"

其中:G:\sendmail\sendmail.exe 是郵件客戶端的地址。

 代碼:

復制代碼 代碼如下:
<?php
//關閉錯誤顯示
ini_set('display_errors', 0);
//開啟錯誤日志功能
ini_set('log_errors', 'on');
//顯示所有錯誤
error_reporting(-1);

//發送錯誤
error_log('當前系統被攻擊,產生了致命錯誤', 1, '[email protected]'); //參數 1 表示以郵件形式發送錯誤

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved