php 自訂錯誤記錄檔
項目中需要對定義錯誤記錄檔及時處理, 那麼就需要修改自訂錯誤記錄檔的輸出方式(寫日誌、發郵件、發簡訊)
一. register_shutdown_function(array('phperror','shutdown_function')); //定義PHP程式執行完成後執行的函數
函數可實現當程式執行完成後執行的函數,其功能為可實現程式執行完成的後續操作。程式在啟動並執行時候可能存在執行逾時,或強制關閉等情況,但這種情況下預設的提示是非常不友好的,如果使用register_shutdown_function()函數捕獲異常,就能提供更加友 好的錯誤展示方式,同時可以實現一些功能的後續操作,如執行完成後的臨時資料清理,包括臨時檔案等。
可以這樣理解調用條件:
1、當頁面被使用者強制停止時
2、當程式碼運行逾時時
3、當PHP代碼執行完成時,代碼執行存在異常和錯誤、警告
二. set_error_handler(array('phperror','error_handler')); // 設定一個使用者定義的錯誤處理函數
通過 set_error_handler() 函數設定使用者自訂的錯誤處理程式,然後觸發錯誤(通過 trigger_error()):
三. set_exception_handler(array('phperror','appException')); //自訂異常處理
定義異常拋出的資料格式。
class phperror{ //自訂錯誤輸出方法 public static function error_handler($errno, $errstr, $errfile, $errline){ $errtype = self::parse_errortype($errno); $ip = $_SERVER['REMOTE_ADDR'];//這裡簡單的擷取用戶端IP //錯誤提示格式自訂 $msg = date('Y-m-d H:i:s')." [$ip] [$errno] [-] [$errtype] [application] {$errstr} in {$errfile}:{$errline}"; //自訂記錄檔的路徑 $logPath = 'logs/app.log'; //寫操作,注意檔案大小等控制 file_put_contents($logPath, $msg, FILE_APPEND); } //系統運行中的錯誤輸出方法 public static function shutdown_function(){ $lasterror = error_get_last();//shutdown只能抓到最後的錯誤,trace無法擷取 $errtype = self::parse_errortype($lasterror['type']); $ip = $_SERVER['REMOTE_ADDR'];//這裡簡單的擷取用戶端IP //錯誤提示格式自訂 $msg = date('Y-m-d H:i:s')." [$ip] [{$lasterror['type']}] [-] [$errtype] [application] {$lasterror['message']} in {$file}:{$lasterror['line']}"; //自訂記錄檔的路徑 $logPath = 'logs/app.log'; //寫操作,注意檔案大小等控制 file_put_contents($logPath, $msg,FILE_APPEND); } //自訂異常輸出 public static function appException($exception) { echo " exception: " , $exception->getMessage(), "/n"; } private static function parse_errortype($type){ switch($type){ case E_ERROR: // 1 return 'Fatal Error'; case E_WARNING: // 2 return 'Warning'; case E_PARSE: // 4 return 'Parse error'; case E_NOTICE: // 8 return 'Notice'; case E_CORE_ERROR: // 16 return 'Core error'; case E_CORE_WARNING: // 32 return 'Core warning'; case E_COMPILE_ERROR: // 64 return 'Compile error'; case E_COMPILE_WARNING: // 128 return 'Compile warning'; case E_USER_ERROR: // 256 return 'User error'; case E_USER_WARNING: // 512 return 'User warning'; case E_USER_NOTICE: // 1024 return 'User notice'; case E_STRICT: // 2048 // return 'Strict Notice'; case E_RECOVERABLE_ERROR: // 4096 return 'Recoverable Error'; case E_DEPRECATED: // 8192 return 'Deprecated'; case E_USER_DEPRECATED: // 16384 return 'User deprecated'; } return $type; } }
以上就是php 自訂錯誤記錄檔執行個體詳解 的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!