PHP sends an error message via Eamil message

Source: Internet
Author: User
Tags vars

PHP through eamil Mail send error message, feel is not very commonly used, but do for a regular PHP project, the first to save their future reference.

View SOURCEPRINT?01

02//Custom Handlers

03function Nettuts_error_handler ($number, $message, $file, $line, $vars) {

$email = "

05

An error ($number) occurred in line

$line and in the file: $file.

07

$message

";

$email. = "

" . Print_r ($vars, 1). "

";

$headers = ' content-type:text/html; Charset=iso-8859-1 '. "RN";

Error_log ($email, 1, ' you@youremail.com ', $headers);

One if (($number!== e_notice) && ($number < 2048)) {

Die ("There is a mistake, please try again later!.");

13}

14}

15set_error_handler (' Nettuts_error_handler ');

16echo $somevarthatdoesnotexist;

17?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.