PHP,配置,错误日志,邮件方式发送
php教程-php手册
会员积分系统.net源码,ubuntu如何启动exe,python爬虫和mysql,php ar,seo147194lzw
这篇文章主要介绍了PHP配置把错误日志以邮件方式发送方法(Windows系统),本文给出了配置示例和使用例子,需要的朋友可以参考下qq业务社区源码php,ubuntu 进程类型g,tomcat服务器和,java 进行爬虫,php解析apk包名,彭州seolzw
虚拟货源网系统源码,vscode安装插件方法,ubuntu鼠标移出,改tomcat ip地址,爬虫痒,php https 配置,seo优化h1,简约淘宝网站模板免费下载,b2b2c商城模板lzw
当系统发生了很严重的问题,需要立刻发送给管理员。可以通过 error_log() 将错误以邮件形式发送到邮箱。
在 php.ini 中设置:
复制代码 代码如下:
sendmail_from = 472323087@qq.com
然后设置:
复制代码 代码如下:
sendmail_path = “G:\sendmail\sendmail.exe -t”
其中:G:\sendmail\sendmail.exe 是邮件客户端的地址。
代码:
复制代码 代码如下:
<?php
//关闭错误显示
ini_set(‘display_errors’, 0);
//开启错误日志功能
ini_set(‘log_errors’, ‘on’);
//显示所有错误
error_reporting(-1);
//发送错误
error_log(‘当前系统被攻击,产生了致命错误’, 1, ‘472323087@qq.com’); //参数 1 表示以邮件形式发送错误
,