通过Email发送PHP错误的方法_PHP
程序员文章站
2022-05-30 09:37:20
...
本文实例讲述了通过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程序设计有所帮助。
推荐阅读
-
通过table标签,PHP输出EXCEL的实现方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
php通过排列组合实现1到9数字相加都等于20的方法
-
php发送get、post请求的6种方法简明总结
-
实现Nginx中使用PHP-FPM时记录PHP错误日志的配置方法
-
PHP通过调用新浪API生成t.cn格式短网址链接的方法详解
-
PHP下打开phpMyAdmin出现403错误的问题解决方法
-
浅析Dos下运行php.exe,出现没有找到php_mbstring.dll 错误的解决方法
-
PHP mail 通过Windows的SMTP发送邮件失败的解决方案
-
PHP基于CURL发送JSON格式字符串的方法示例