error_log()函数发送错误信息到某个地方
bool error_log ( string $message [, int $message_type [, string $destination [, string $extra_headers]]] )
它将错误消息发送到Web服务器的错误日志,TCP端口或者到一个文件里。
序号 | 参数及说明 |
---|---|
1 | message 应该记录的错误消息。 |
2 | message_type 它说明错误应该去哪里。可能的消息类型如下-
|
3 | destination 指定向何处发送错误消息。它的含义描述于以上,由 message_type 参数所决定。 |
4 | extra_headers 额外的头。当 message_type 设置为 1 的时候使用。 该信息类型使用了 mail() 的同一个内置函数。 |
成功返回TRUE,失败返回FALSE。