首页 > 网站 > 建站经验 > 正文

PHP中_把错误日志保存在系统日志中

2019-11-02 15:11:58
字体:
来源:转载
供稿:网友

   这篇文章主要介绍了PHP中把错误日志保存在系统日志中(Windows系统),本文讲解了设置方法和查看方法,需要的朋友可以参考下

  【将错误记录到系统日志中】

  在 php.ini 中将 error_log 设置为:

  复制代码 代码如下:

  error_log = syslog

  或者在运行时使用 ini_set() 函数设置。

  【例1】

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php //关闭错误显示 ini_set('display_errors', 0); //开启错误日志功能 ini_set('log_errors', 'on'); //设置错误日志的路径 ini_set('error_log', 'syslog'); //显示所有错误 error_reporting(-1);   //记录错误 //通知级别的错误 echo $test; //警告 settype($var, 'dee'); //致命错误 test();

  查看错误日志(Windows 系统):

  "我的电脑" ---- 右键 ----- 管理 ----- 事件查看器 ----- 信息

  【例2】通过 openlog() 发送系统日志

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php //关闭错误显示 ini_set('display_errors', 0); //开启错误日志功能 ini_set('log_errors', 'on'); //设置错误日志的路径 ini_set('error_log', 'syslog'); //显示所有错误 error_reporting(-1);  
歌名网名[www.la240.com/html2017/1/13/]
//打开系统日志的连接 openlog('PHP5.3.10', LOG_PID, LOG_SYSLOG); //openlog:Open connection to system logger //发送日志 syslog(LOG_ERR, 'this is a test of a syslog'.date("Y-m-d H:i:s")); //关闭系统日志的连接 closelog();

  在事件查看器的警告信息中也能看到日志:

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表