通过Email发送PHP错误的方法_php技巧
程序员文章站
2022-05-21 16:31:05
...
本文实例讲述了通过Email发送PHP错误的方法。分享给大家供大家参考。具体实现方法如下:
An error ($number) occurred on line $line and in the file: $file.$message
"; $email .= "" . print_r($vars, 1) . ""; $headers = 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Email the error to someone... error_log($email, 1, 'you@youremail.com', $headers); // Make sure that you decide how to respond to errors (on the user's side) // Either echo an error message, or kill the entire project. Up to you... // The code below ensures that we only "die" if the error was more than // just a NOTICE. if ( ($number !== E_NOTICE) && ($number
希望本文所述对大家的php程序设计有所帮助。
上一篇: yotaku的开发日志1
推荐阅读
-
表单提交错误后返回内容消失问题的解决方法(PHP网站)
-
用PHP即时捕捉PHP中的错误并发送email通知的实现代码
-
PHP防范SQL注入的具体方法详解(测试通过)
-
nginx加php-fpm出现502 bad gateway错误的5种解决方法
-
php一些错误处理的方法与技巧总结
-
通过table标签,PHP输出EXCEL的实现方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
php通过排列组合实现1到9数字相加都等于20的方法
-
php发送get、post请求的6种方法简明总结
-
实现Nginx中使用PHP-FPM时记录PHP错误日志的配置方法