This article mainly introduces how to send PHP errors via Email. The example analyzes the php Error reading and the related skills of sending emails via php, which has some reference value, for more information, see
This article mainly introduces how to send PHP errors via Email. The example analyzes the php Error reading and the related skills of sending emails via php, which has some reference value, for more information, see
This example describes how to send PHP errors by Email. Share it with you for your reference. The specific 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$ LineAnd inFile: $ 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 <2048) {die ("There was an error. please try again later. ") ;}// We shoshould 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 will help you with php programming.
,