溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP異常類的處理方法

發(fā)布時間:2021-09-01 22:51:13 來源:億速云 閱讀:123 作者:chen 欄目:開發(fā)技術

這篇文章主要講解了“PHP異常類的處理方法”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“PHP異常類的處理方法”吧!

PHP預定了兩個異常類:Exception和ErrorException

復制代碼 代碼如下:


Exception {
    /* 屬性 */
    protected string $message ; //異常消息內(nèi)容
    protected int $code ; //異常代碼號
    protected string $file ; //拋出異常的文件名
    protected int $line ; //拋出異常在該文件中的行號
    /* 方法 */
    public __construct ([ string $message = "" [, int $code = 0 [, Exception $previous = null]]] )
    final public string getMessage ( void ) //異常拋出的信息
    final public Exception getPrevious ( void ) //前一異常
    final public int getCode ( void ) //異常代碼,這是用戶自定義的
    final public string getFile ( void ) //發(fā)生異常的文件路勁
    final public int getLine ( void ) //發(fā)生異常的行
    final public array getTrace ( void ) //異常追蹤信息(array)
    final public string getTraceAsString ( void ) //異常追蹤信息(string)
    public string __toString ( void ) //試圖直接 將異常對象當作字符串使用時調(diào)用子函數(shù)的返回值
    final private void __clone ( void ) //克隆異常對象時調(diào)用
}

復制代碼 代碼如下:


ErrorException  extends Exception  {
 
    /* 屬性 */
    protected int $severity   ;
    /* 方法 */
   
    public __construct  ([ string $message  = ""  [, int $code  = 0  [, int $severity  = 1  [, string $filename  = __FILE__  [, int $lineno  = __LINE__  [, Exception  $previous  = NULL    ]]]]]] )
    final public int getSeverity  ( void )
    /* 繼承的方法 */
    final public string Exception::getMessage  ( void )
    final public Exception Exception::getPrevious  ( void )
    final public int Exception::getCode  ( void )
    final public string Exception::getFile  ( void )
    final public int Exception::getLine  ( void )
    final public array Exception::getTrace  ( void )
    final public string Exception::getTraceAsString  ( void )
    public string Exception::__toString  ( void )
    final private void Exception::__clone  ( void )
}

那么如何捕獲異常?

(1)PHP可用try...catch...捕獲異常,進行異常處理的代碼必須在try代碼塊內(nèi)。

復制代碼 代碼如下:


try {
    throw new Exception('exception test 1', 1001);
} catch(Exception $e) {
    echo $e->getMessage().'-'.$e->getCode();
}

(2)用戶可以自定義異常處理函數(shù)[set_exception_handler],用于沒用用try/catch捕獲的異常。

復制代碼 代碼如下:


function  exception_handler ( $e ) {
    echo  "Uncaught exception: "  ,  $e -> getMessage (),  "\n" ;
}
 
set_exception_handler ( 'exception_handler' );
 
throw new  Exception ( 'Uncaught Exception' );
 
echo "這行不會執(zhí)行了";

可以看到使用ser_exception_handler回調(diào)函數(shù)處理異常,后續(xù)的代碼不會繼續(xù)執(zhí)行,但try-catch可以。
(3)PHP可用多catch捕獲不同類型異常,并允許在catch代碼塊內(nèi)再次拋出異常。

復制代碼 代碼如下:


//請根據(jù)實際擴展異常類
class MyException extends Exception {
    public function __construct($message = '', $code = 0) {
 
    }
 
    public function myFunction() {
        echo 'just for test';
    }
}
 
try {
    throw new MyException('an error');
} catch (MyException $e) {
    echo $e->myFunction();
} catch (Exception $e) {
    echo $e->getMessage();
}


(4)PHP5.5已經(jīng)支持finally關鍵詞,你無需關心異常是否溢出了。

PHP異常類的處理方法

可對比如下:

復制代碼 代碼如下:


function doSomething() {
    $resource = createResource();
    try {
        $result = useResource($resource);
    } catch (Exception $e) {
        releaseResource($resource);
        log($e->getMessage());
        exit();
    }
    releaseResource($resource);
    return $result;
}
 
//使用finally后
function doSomething2() {
    $resource = createResource();
    try {
        $result = useResource($resource);
        return $result;
    } catch (Exception $e) {
        log($e->getMessage());
        exit();
    } finally {
        releaseResource($resource);
    }
}

感謝各位的閱讀,以上就是“PHP異常類的處理方法”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對PHP異常類的處理方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

php
AI