在PHP 7 中,Throwable 介面充當任何可以作為throw 語句參數的對象的基礎,包括錯誤和異常。 Error 和 Exception 類別(分別衍生預先定義的和使用者定義的錯誤和異常類別)都實作 Throwable 介面。 Throwable 介面中定義了以下抽象方法-
Throwable { /* Methods */ abstract public getMessage ( void ) : string abstract public getCode ( void ) : int abstract public getFile ( void ) : string abstract public getLine ( void ) : int abstract public getTrace ( void ) : array abstract public getTraceAsString ( void ) : string abstract public getPrevious ( void ) : Throwable abstract public __toString ( void ) : string }
getMessage (void) - string -> 傳回與拋出的對象關聯的訊息。
getCode (void) - int -> 傳回與拋出的物件關聯的錯誤代碼。
getFile ( void ) − string -> 取得拋出的物件所在的檔案的名稱已建立。
getLine ( void ) − int -> 傳回實例化拋出物件的行號。
getTrace ( void ) − array -> 以陣列形式傳回堆疊追蹤。
getTraceAsString ( void ) − string -> 以字串形式傳回堆疊追蹤。
getPrevious ( void ) - Throwable -> 傳回任何先前的 Throwable (以 Exception::__construct() 的第三個參數提供)。
__toString ( void ) − string -> 取得拋出物件的字串表示形式
以上是PHP Throwable介面的詳細內容。更多資訊請關注PHP中文網其他相關文章!