(PHP 5, PHP 7)
Exception::getCode — 获取异常代码
返回异常代码。
此函数没有参数。
Exception 返回整型(integer)的异常代码,但在其他类中可能返回其他类型(比如在 PDOException 中返回 string)。
Example #1 Exception::getCode()示例
<?php
try {
throw new Exception("Some error message", 30);
} catch(Exception $e) {
echo "The exception code is: " . $e->getCode();
}
?>
以上例程的输出类似于:
The exception code is: 30