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

通過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

贊助商鏈接:

主站蜘蛛池模板: 信宜市| 吐鲁番市| 沧州市| 石阡县| 昭平县| 稻城县| 溧阳市| 利川市| 新邵县| 陕西省| 枣阳市| 永定县| 鹤峰县| 达孜县| 南雄市| 襄汾县| 苍南县| 方正县| 昌黎县| 汕尾市| 乐昌市| 定南县| 临夏市| 正镶白旗| 建昌县| 五峰| 凤阳县| 中江县| 肥西县| 淮阳县| 泾源县| 丰原市| 石门县| 新干县| 湟源县| 康马县| 饶河县| 古浪县| 图木舒克市| 高安市| 上栗县|