PHP error_log() 函数

返回上一级

PHP error_log() 函数向服务器错误记录、文件或远程目标发送一个错误

函数原型

error_log(error,type,destination,headers)

参数列表

参数 描述
error 必需。要记录的错误消息
type 可选。规定错误记录的类型
destination 可选。规定向何处发送错误消息
该参数的值依赖于 "type" 参数的值
headers 可选。只在 "type" 参数为 1 时使用
规定附加的头部,比如 From, Cc 以及 Bcc
附加头部由 CRLF (\r\n) 分隔
注意:在发送电子邮件时,必须包含 From 头部
可以在 php.ini 文件中或者通过此参数设置

错误记录类型

描述
0 默认。根据在 php.ini 文件中的 error_log 配置,错误被发送到服务器日志系统或文件
1 错误被发送到 destination 参数中的地址。只有该类型使用 headers 参数
2 通过 PHP debugging 连接来发送错误。该选项只在 PHP 3 中可用
3 错误发送到文件目标字符串

返回值

成功返回 TRUE
失败返回 FALSE

范例

下面的范例把日志记录到电子邮件里

<?php

$test=2;
if ($test>1)
{
    error_log("A custom error has been triggered",1,
        "someone@example.com",
        "From: webmaster@example.com");
}

运行以上 PHP 范例,邮件收到内容如下

A custom error has been triggered

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.