PHP error_log() 函數
PHP error_log() 函數

定義和用法
error_log() 函數向服務器錯誤記錄、文件或遠程目標發送一個錯誤。
如果成功該函數返回 TRUE,如果失敗該函數返回 FALSE。
語法
error_log(error,type,destination,headers)
參數 | 描述 |
---|---|
error | 必需。要記錄的錯誤消息。 |
type | 可選。規定錯誤記錄的類型。 可能的記錄類型:
|
destination | 可選。規定向何處發送錯誤消息。該參數的值依賴于 "type" 參數的值。 |
headers | 可選。只在 "type" 參數為 1 時使用。規定附加的頭部,比如 From, Cc 以及 Bcc。附加頭部由 CRLF (\r\n) 分隔。
注意:在發送電子郵件時,必須包含 From 頭部。可以在 php.ini 文件中或者通過此參數設置。 |
實例
下面的實例發送一封帶有自定義錯誤的電子郵件:
<?php
$test=2;
if ($test>1)
{
error_log("A custom error has been triggered",
1,"someone@example.com","From: webmaster@example.com");
}
?>
$test=2;
if ($test>1)
{
error_log("A custom error has been triggered",
1,"someone@example.com","From: webmaster@example.com");
}
?>
上面代碼接收到的郵件如下所示:
A custom error has been triggered

相關文章
- PHP echo 和 print 語句
- PHP 字符串
- PHP If Else 語句
- PHP 命名空間 namespace
- PHP 包含文件 include 和 require 語句
- PHP 錯誤處理
- PHP array_chunk() 函數
- PHP array_intersect_ukey() 函數
- PHP array_merge() 函數
- PHP array_pad() 函數
- PHP array_rand() 函數
- PHP array_udiff_uassoc() 函數
- PHP array_values() 函數
- PHP arsort() 函數
- PHP count() 函數
- PHP current() 函數
- PHP reset() 函數
- PHP HTTP 函數
- PHP Mail 函數
- PHP 雜項 函數