php 语法错误定位 try catch Throwable
Posted mywebnumber
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 语法错误定位 try catch Throwable相关的知识,希望对你有一定的参考价值。
try {
} catch (Exception $ex) {
// 计算错误
} catch (Throwable $ex) {
// 语法错误,致命错误
}
Throwable {
/* Methods */
abstract public string getMessage ( void )
abstract public int getCode ( void )
abstract public string getFile ( void )
abstract public int getLine ( void )
abstract public array getTrace ( void )
abstract public string getTraceAsString ( void )
abstract public Throwable getPrevious ( void )
abstract public string __toString ( void )
}
Throwable 是一个接口,Error 类和Exception 类都继承 Throwable 接口。
Error 就是用于语法错误和致命错误的捕捉的。
以上是关于php 语法错误定位 try catch Throwable的主要内容,如果未能解决你的问题,请参考以下文章
从不用 try-catch 实现的 async/await 语法说错误处理