gpt4 book ai didi

php - PHP 中的异常处理 : where does $e goes?

转载 作者:可可西里 更新时间:2023-11-01 13:38:19 24 4
gpt4 key购买 nike

我一直在搜索这个,但我似乎在这段代码中遇到了相同的文章:

   try
{
//some code

}
catch(Exception $e){
throw $e;
}

$e 存储在哪里或网站管理员如何查看它?我应该寻找一个特殊的功能吗?

最佳答案

Exception object (在这种情况下,$e)从 catch{} block 内抛出将被下一个最高的 try{} catch{} block 捕获。

这是一个愚蠢的例子:

try {
try {
throw new Exception("This is thrown from the inner exception handler.");
}catch(Exception $e) {
throw $e;
}
}catch(Exception $e) {
die("I'm the outer exception handler (" . $e->getMessage() . ")<br />");
}

上面的输出是

I'm the outer exception handler (This is thrown from the inner exception handler.)

关于php - PHP 中的异常处理 : where does $e goes?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/957223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com