返回先前的 Throwable

Error::getPrevious

(PHP 7, PHP 8)

Error::getPrevious返回先前的 Throwable

說明

final public Error::getPrevious(): ?Throwable

返回先前的 Throwable(Error::__construct() 的第三個參數)。

參數

此函式沒有參數。

返回值

如果有的話,返回先前的 Throwable,否則返回 null

範例

示例 #1 Error::getPrevious() 例子

循環輸出錯誤棧。

<?php
class MyCustomError extends Error {}

function 
doStuff() {
    try {
        throw new 
InvalidArgumentError("You are doing it wrong!"112);
    } catch(
Error $e) {
        throw new 
MyCustomError("Something happened"911$e);
    }
}


try {
    
doStuff();
} catch(
Error $e) {
    do {
        
printf("%s:%d %s (%d) [%s]\n"$e->getFile(), $e->getLine(), $e->getMessage(), $e->getCode(), get_class($e));
    } while(
$e $e->getPrevious());
}
?>

以上例程的輸出類似於:

/home/bjori/ex.php:8 Something happened (911) [MyCustomError]
/home/bjori/ex.php:6 You are doing it wrong! (112) [InvalidArgumentError]

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *