这个函数的接口描述如下:
bool error_log ( string $message [, int $message_type = 0 [, string $destination [, string $extra_headers ]]] )
其中第一个参数是要输出的日志,第二个参数是输出的方式,一共有四种方式,分别是:
0:message 发送到 PHP 的系统日志,使用操作系统的日志机制或者一个文件,取决于error_log 指令设置了什么。这是个默认的选项。
1:message 发送到参数 destination 设置的邮件地址。第四个参数 extra_headers 只有在这个类型里才会被用到。
2:不再是一个选项。
3:message 被发送到位置为 destination 的文件里。字符 message 不会默认被当做新的一行。
4:message 直接发送到 SAPI 的日志处理程序中。
我们最常用的是输出到日志文件里,就是3.
下面是一个用法的例子:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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" ); ?> |