Php/docs/exception.getcode
来自菜鸟教程
Exception::getCode
(PHP 5, PHP 7, PHP 8)
Exception::getCode — 获取异常代码
说明
final public Exception::getCode ( ) : int
返回异常代码。
参数
此函数没有参数。
范例
Example #1 Exception::getCode()示例
<?phptry { throw new Exception("Some error message", 30);} catch(Exception $e) { echo "The exception code is: " . $e->getCode();}?>
以上例程的输出类似于:
The exception code is: 30
参见
- Throwable::getCode()