函数:error_log() |
error_log送出一个错误信息。 语法: int error_log(string message, int message_type, string [destination], string [extra_headers]); 返回值: 整数 函数种类: PHP 系统功能
此函数会送出错误信息到 Web 服务器的错误 log 文件,TCP Port,或到指定文件。第一个参数 message 即为要送出的错误信息。第二个参数 message_type 为整数值:0 表示送到操作系统的 log (UNIX 在 syslog、Windows NT 记录到事件记录);1 则使用 PHP 的 Mail() 函数,送信息到某 E-Mail 处,第四个参数 extra_headers 亦会用到;2 则将错误信息送到 TCP 埠,此时第三个参数 destination 表示目的地 IP 及 Port;3 则将信息存到文件 destination 中。
本例为登入 Oracle 数据库出现问题的处理。 整理: (www.phpernote.com)
|