成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

通過Email發送PHP錯誤的代碼

2012-01-18 09:06:30來源:作者:

通過Email發送PHP錯誤的代碼

通過Email發送PHP錯誤的代碼

<?php

// Our custom error handler
function nettuts_error_handler($number, $message, $file, $line, $vars){
 $email = "
  <p>An error ($number) occurred on line
  <strong>$line</strong> and in the <strong>file: $file.</strong>
  <p> $message </p>";

 $email .= "<pre>" . print_r($vars, 1) . "</pre>";

 $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 should use our custom function to handle errors.
set_error_handler('nettuts_error_handler');

// Trigger an error... (var doesn't exist)
echo $somevarthatdoesnotexist;
 

關鍵詞:PHPEmail

贊助商鏈接:

主站蜘蛛池模板: 丰都县| 蒙自县| 安平县| 宁海县| 秀山| 翼城县| 汝南县| 四子王旗| 龙门县| 磐石市| 广水市| 东乌珠穆沁旗| 昌黎县| 利辛县| 灵川县| 台东县| 达尔| 全南县| 湘阴县| 湾仔区| 资中县| 礼泉县| 武义县| 甘德县| 芒康县| 新闻| 泉州市| 陆河县| 岚皋县| 锡林浩特市| 霍城县| 崇明县| 虎林市| 新密市| 得荣县| 白城市| 个旧市| 丰城市| 周口市| 三江| 汝阳县|