通过Email发送PHP错误的方法_php技巧
程序员文章站
2022-05-28 19:02:32
...
本文实例讲述了通过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程序设计有所帮助。
推荐阅读
-
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格式字符串的方法示例
-
PHP通过bypass disable functions执行系统命令的方法汇总
-
php实现发送微信模板消息的方法
-
php通过正则表达式记取数据来读取xml的方法