如果我有一个未声明的函数并导致500错误并且在try块中调用此函数,那么在函数回滚之前插入是否会完成?
当我尝试以下代码时,catch不会处理500错误。
DB::connection()->getPdo()->beginTransaction();
try
{
$helper = new Helper;
$helper->functionThatIsNotDeclared();
DB::connection()->getPdo()->commit();
}
catch( \Exception $e)
{
DB::connection()->getPdo()->rollBack();
}
无论如何都能正确处理500错误吗?
感谢advnace。
答案 0 :(得分:2)
您可以使用method_exists()
- http://www.php.net/manual/en/function.method-exists.php
您的代码看起来像这样:
DB::connection()->getPdo()->beginTransaction();
try
{
$helper = new Helper;
if(method_exists($helper, 'functionThatIsNotDeclared')) {
// The method exists, do something
} else {
// The method doesn't exist, do something else
}
DB::connection()->getPdo()->commit();
}
catch(Exception $e)
{
DB::connection()->getPdo()->rollBack();
}
虽然我认为您收到错误的原因是因为catch()
- 我认为您打算键入catch(Exception $e)
而不是catch( \Exception $e)
。
答案 1 :(得分:1)
PHP中的致命错误会终止当前代码“stack”并直接跳转到关闭处理程序,因此它们会避免使用try / catch块。您可以注册一个致命的错误处理程序:
App::fatal(function() { DB::getPdo()->rollback(); });
但如果在发生另一个致命错误时没有开始交易,这可能不会很好。
这里的一般建议是避免整体上的致命错误。致命错误表示代码中存在错误,而异常则是应用程序中发生的“预期”错误。