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"); } ?>
输出:
A custom error has been triggered