error_log 发送错误信息到某个地方
发表日期:2021-07-01 08:54:56 | 来源: | | 浏览(557) 分类:错误处理 函数
error_log
(PHP 4, PHP 5, PHP 7, PHP 8)
error_log — 发送错误信息到某个地方
说明
error_log(
string $message
,
int $message_type
= 0,
string $destination
= ?,
string $extra_headers
= ?
): bool
把错误信息发送到 web 服务器的错误日志,或者到一个文件里。
参数
message
应该被记录的错误信息。
message_type
设置错误应该发送到何处。可能的信息类型有以下几个:
error_log() 日志类型 0 message
发送到 PHP 的系统日志,使用 操作系统的日志机制或者一个文件,取决于error_log 指令设置了什么。 这是个默认的选项。1 message
发送到参数destination
设置的邮件地址。 第四个参数extra_headers
只有在这个类型里才会被用到。2 不再是一个选项。 3 message
被发送到位置为destination
的文件里。 字符message
不会默认被当做新的一行。4 message
直接发送到 SAPI 的日志处理程序中。destination
目标。它的含义描述于以上,由
message_type
参数所决定。extra_headers
额外的头。当
message_type
设置为1
的时候使用。 该信息类型使用了 mail() 的同一个内置函数。
返回值
成功时返回 true
, 或者在失败时返回 false
。
注释
警告
error_log() 并非二进制安全的。null 字符可能截断 message
。
小技巧
message
不能包含 null 字符。
注意,message
可能会发送到文件、邮件、syslog 等。
所以在调用 error_log() 前需要使用适合的转换/转义函数: base64_encode()、 rawurlencode() 或 addslashes()。
范例
示例 #1 error_log() 范例
<?php // 如果无法连接到数据库,发送通知到服务器日志if (!Ora_Logon($username, $password)) { error_log("Oracle database not available!", 0); } // 如果用尽了 FOO,通过邮件通知管理员if (!($foo = allocate_new_foo())) { error_log("Big trouble, we're all out of FOOs!", 1, "operator@example.com"); } // 调用 error_log() 的另一种方式:error_log("You messed up!", 3, "/var/tmp/my-errors.log"); ?>
更新日志
版本 | 说明 |
---|---|
5.2.7 | 可能的值:4添加到了 message_type 。 |
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- 预定义常量(0)
- debug_backtrace 产生一条回溯跟踪(backtrace)(0)
- debug_print_backtrace 打印一条回溯。(0)
- error_clear_last 清除最近一次错误(0)
- error_get_last 获取最后发生的错误(0)
- error_log 发送错误信息到某个地方(0)
- error_reporting 设置应该报告何种 PHP 错误(0)
- restore_error_handler 还原之前的错误处理函数(0)
- restore_exception_handler 恢复之前定义过的异常处理函数。(0)
- set_error_handler 设置用户自定义的错误处理函数(0)
- set_exception_handler 设置用户自定义的异常处理函数(0)
- trigger_error 产生一个用户级别的 error/warning/notice 信息(0)
- user_error trigger_error() 的别名(0)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)