PHP7异常处理

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.

catch (Throwable $t) {

}

PHP finaly 图片来源

原文地址:https://www.cnblogs.com/8000cabbage/p/7986301.html