PHP error_log() 函數(shù)
PHP error_log() 函數(shù)

定義和用法
error_log() 函數(shù)向服務(wù)器錯(cuò)誤記錄、文件或遠(yuǎn)程目標(biāo)發(fā)送一個(gè)錯(cuò)誤。
如果成功該函數(shù)返回 TRUE,如果失敗該函數(shù)返回 FALSE。
語(yǔ)法
error_log(error,type,destination,headers)
參數(shù) | 描述 |
---|---|
error | 必需。要記錄的錯(cuò)誤消息。 |
type | 可選。規(guī)定錯(cuò)誤記錄的類型。 可能的記錄類型:
|
destination | 可選。規(guī)定向何處發(fā)送錯(cuò)誤消息。該參數(shù)的值依賴于 "type" 參數(shù)的值。 |
headers | 可選。只在 "type" 參數(shù)為 1 時(shí)使用。規(guī)定附加的頭部,比如 From, Cc 以及 Bcc。附加頭部由 CRLF (\r\n) 分隔。
注意:在發(fā)送電子郵件時(shí),必須包含 From 頭部??梢栽?php.ini 文件中或者通過(guò)此參數(shù)設(shè)置。 |
實(shí)例
下面的實(shí)例發(fā)送一封帶有自定義錯(cuò)誤的電子郵件:
<?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

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