Email php error method, email send php_php tutorial

Source: Internet
Author: User
Tags php error

e-Mail php error method, email to send PHP


The example in this article describes how to send PHP errors via email. Share to everyone for your reference. The implementation method is as follows:

<?php//Our custom error handlerfunction Nettuts_error_handler ($number, $message, $file, $line, $vars) {$email = "

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 so decide how to respond to errors (on the user's side)//either echo an error message, or kill the E Ntire Project. Up-to-you ...//the code below ensures that we only "die" if the error is more than//just a NOTICE. if ($number!== e_notice) && ($number < 2048)) {Die ("there is an error. Please try again later. ");} We should use our custom function to handle Errors.set_error_handler (' Nettuts_error_handler ');//Trigger an error ... (Var doesn ' t exist) echo $somevarthatdoesnotexist;

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/1035662.html www.bkjia.com true http://www.bkjia.com/PHPjc/1035662.html techarticle by email php error method, e-mail to send PHP examples of this article tells the way to send PHP errors by email. Share to everyone for your reference. The concrete implementation method is as follows: php//O ...

  • 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.