搜尋
首頁後端開發PHP問題關於php捕捉錯誤的詳解

php捕捉錯誤的方法:1、使用「try{}catch()」方法捕捉錯誤;2、透過「set_error_handler」函數捕捉「E_NOTICE」等;3、利用「set_exception_handler」設定預設的異常處理程序。

關於php捕捉錯誤的詳解

php錯誤及異常捕捉

在實際開發中,錯誤及異常捕捉僅靠try{}catch ()是遠遠不夠的。

所以引用以下幾中函數。

a)   set_error_handler

一般用於捕捉  E_NOTICE 、E_USER_ERROR、E_USER_WARNING、E_USER_NOTICE

不能捕捉:

##E_ER_ROR, EORE.ROR_ROR_ROR.2_ER_ROR.和 E_COMPILE_WARNING。

一般與trigger_error("...", E_USER_ERROR),搭配使用。

<?php
// we will do our own error handling
error_reporting(0);
function userErrorHandler($errno, $errmsg, $filename, $linenum, $vars)
{
    // timestamp for the error entry    
$dt = date("Y-m-d H:i:s (T)");    
// define an assoc array of error string    
// in reality the only entries we should    
// consider are E_WARNING, E_NOTICE, E_USER_ERROR,    
// E_USER_WARNING and E_USER_NOTICE    
$errortype = array (                
E_ERROR              => &#39;Error&#39;,                
E_WARNING            => &#39;Warning&#39;,                
E_PARSE              => &#39;Parsing Error&#39;,                
E_NOTICE             => &#39;Notice&#39;,                
E_CORE_ERROR         => &#39;Core Error&#39;,                
E_CORE_WARNING       => &#39;Core Warning&#39;,                
E_COMPILE_ERROR      => &#39;Compile Error&#39;,                
E_COMPILE_WARNING    => &#39;Compile Warning&#39;,                
E_USER_ERROR         => &#39;User Error&#39;,                
E_USER_WARNING       => &#39;User Warning&#39;,                
E_USER_NOTICE        => &#39;User Notice&#39;,                
E_STRICT             => &#39;Runtime Notice&#39;,                
E_RECOVERABLE_ERROR  => &#39;Catchable Fatal Error&#39;                
);    
// set of errors for which a var trace will be saved    
$user_errors = array(E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE);        
$err = "<errorentry>\n";    
$err .= "\t<datetime>" . $dt . "</datetime>\n";    
$err .= "\t<errornum>" . $errno . "</errornum>\n";    
$err .= "\t<errortype>" . $errortype[$errno] . "</errortype>\n";    
$err .= "\t<errormsg>" . $errmsg . "</errormsg>\n";    
$err .= "\t<scriptname>" . $filename . "</scriptname>\n";    
$err .= "\t<scriptlinenum>" . $linenum . "</scriptlinenum>\n";    
if (in_array($errno, $user_errors)) {        
$err .= "\t<vartrace>" . wddx_serialize_value($vars, "Variables") . "</vartrace>\n";    
}    
$err .= "</errorentry>\n\n";
echo $err;
}
function distance($vect1, $vect2) {    
if (!is_array($vect1) || !is_array($vect2)) {        
trigger_error("Incorrect parameters, arrays expected", E_USER_ERROR);        
return NULL;    
}    
if (count($vect1) != count($vect2)) {        
trigger_error("Vectors need to be of the same size", E_USER_ERROR);        
return NULL;    
} 
for ($i=0; $i<count($vect1); $i++) {        
$c1 = $vect1[$i]; $c2 = $vect2[$i];        
$d = 0.0;        
if (!is_numeric($c1)) {            
trigger_error("Coordinate $i in vector 1 is not a number, using zero",E_USER_WARNING);            
$c1 = 0.0;        
}        
if (!is_numeric($c2)) {            
trigger_error("Coordinate $i in vector 2 is not a number, using zero",E_USER_WARNING);            
$c2 = 0.0;        
}
$d += $c2*$c2 - $c1*$c1;    
}    
return sqrt($d);
}
 
$old_error_handle = set_error_handler("userErrorHandler");
$t = I_AM_NOT_DEFINED;//generates a warning
 
// define some "vectors"
$a = array(2, 3, "foo");
$b = array(5.5, 4.3, -1.6);
$c = array(1, -3);
 
//generate a user error
$t1 = distance($c,$b);
 
// generate another user error
$t2 = distance($b, "i am not an array") . "\n";
 
// generate a warning
$t3 = distance($a, $b) . "\n";
?>

 

b)   set_exception_handler

設定預設的例外處理程序,用於沒有用 try/catch 區塊來擷取的例外。在 exception_handler 呼叫後異常會中止。

與throw new Exception('Uncaught Exception occurred'),連用。

<?php
// we will do our own error handling
error_reporting(0);
function exceptHandle($errno, $errmsg, $filename, $linenum, $vars)
{
    // timestamp for the error entry    
$dt = date("Y-m-d H:i:s (T)");    
// define an assoc array of error string    
// in reality the only entries we should    
// consider are E_WARNING, E_NOTICE, E_USER_ERROR,    
// E_USER_WARNING and E_USER_NOTICE    
$errortype = array (                
E_ERROR              => &#39;Error&#39;,                
E_WARNING            => &#39;Warning&#39;,                
E_PARSE              => &#39;Parsing Error&#39;,                
E_NOTICE             => &#39;Notice&#39;,                
E_CORE_ERROR         => &#39;Core Error&#39;,                
E_CORE_WARNING       => &#39;Core Warning&#39;,                
E_COMPILE_ERROR      => &#39;Compile Error&#39;,                
E_COMPILE_WARNING    => &#39;Compile Warning&#39;,                
E_USER_ERROR         => &#39;User Error&#39;,                
E_USER_WARNING       => &#39;User Warning&#39;,                
E_USER_NOTICE        => &#39;User Notice&#39;,                
E_STRICT             => &#39;Runtime Notice&#39;,                
E_RECOVERABLE_ERROR  => &#39;Catchable Fatal Error&#39;                
);    
// set of errors for which a var trace will be saved    
$err = "<errorentry>\n";    
$err .= "\t<datetime>" . $dt . "</datetime>\n";    
$err .= "\t<errornum>" . $errno . "</errornum>\n";    
$err .= "\t<errortype>" . $errortype[$errno] . "</errortype>\n";    
$err .= "\t<errormsg>" . $errmsg . "</errormsg>\n";    
$err .= "\t<scriptname>" . $filename . "</scriptname>\n";    
$err .= "\t<scriptlinenum>" . $linenum . "</scriptlinenum>\n";    
if (1) {        
$err .= "\t<vartrace>" . wddx_serialize_value($vars, "Variables") . "</vartrace>\n";    
}    
$err .= "</errorentry>\n\n";
echo $err;
}
$old_except_handle = set_exception_handler("exceptHandle");
//$t = I_AM_NOT_DEFINED;//generates a warning
$a;
throw new Exception(&#39;Uncaught Exception occurred&#39;);    
?>

 

c) ​​  register_shutdown_function

執行機制是:php把要呼叫的函數調到記憶體。當頁面所有PHP語句都執行完成時,再呼叫此函數。

一般與trigger_error("...", E_USER_ERROR),搭配使用。

<?php
error_reporting(0);
date_default_timezone_set(&#39;Asia/Shanghai&#39;);
register_shutdown_function(&#39;my_exception_handler&#39;);
 
$t = I_AM_NOT_DEFINED;//generates a warning
trigger_error("Vectors need to be of the same size", E_USER_ERROR);     
 
function my_exception_handler()
{
    if($e = error_get_last()) {
    //$e[&#39;type&#39;]对应php_error常量
    $message = &#39;&#39;;
    $message .= "出错信息:\t".$e[&#39;message&#39;]."\n\n";
    $message .= "出错文件:\t".$e[&#39;file&#39;]."\n\n";
    $message .= "出错行数:\t".$e[&#39;line&#39;]."\n\n";
    $message .= "\t\t请工程师检查出现程序".$e[&#39;file&#39;]."出现错误的原因\n";
    $message .= "\t\t希望能您早点解决故障出现的原因<br/>";
echo $message;
    //sendemail to
    }
}
?>

c) restore_error_handler()函數

定義和用法 restore_error_handler() 函數恢復先前的錯誤處理程序,該程序是由 set_error_handler() 函數改變的。

該函數永遠傳回 true。

是 set_error_handler()的反函數。

更多相關知識,請造訪

PHP中文網

以上是關於php捕捉錯誤的詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前By尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),