PHP,配置,错误日志,邮件方式发送
后端开发-php教程
当系统发生了很严重的问题,需要立刻发送给管理员。可以通过 error_log() 将错误以邮件形式发送到邮箱。仿迅雷影视源码,引导xp安装ubuntu,爬虫抓取隐藏内容,php rand 概率,英文seo价格lzw
在 php.ini 中设置:ecshop客服源码,ubuntu安装界面死机,mc动画爬虫突变,datatime php,seo链轮策略lzw
sendmail_from = 472323087@qq.com时时彩运营源码,ubuntu大猩猩壁纸,tomcat9中文字符识别,爬虫动物的种类,flag在php中是什么意思,标兵seo教程lzw
然后设置: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 表示以邮件形式发送错误