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 图片来源

 

posted @ 2017-12-05 12:42  xiaobaicaidage  阅读(183)  评论(0编辑  收藏  举报