略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Error::getPrevious

2024-05-03

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]

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/error.getprevious.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3