try
{
   // Code that may throw an Exception or Error.
}catch (Exception $e) {

} catch (Error $t) {

}

php7新增 Throwable 手册

Throwable is the base interface for any object that can be thrown via a throwstatement in PHP 7, including Error and Exception.

PHP7异常处理

 

catch (Throwable $t) {

}

 

PHP finaly 图片来源

PHP7异常处理

 

相关文章:

  • 2021-06-12
  • 2021-12-12
  • 2021-07-28
  • 2022-12-23
  • 2021-09-04
  • 2022-02-27
  • 2021-12-18
猜你喜欢
  • 2021-05-23
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
  • 2021-04-05
  • 2021-11-13
相关资源
相似解决方案