PHP Exception getCode() 方法
实例
抛出异常并输出其代码:
<?php
try {
throw new Exception("An error occurred", 120);
}
catch(Exception $e) {
echo "Error code: " . $e->getCode();
}
?>
亲自试一试 »
定义和用法
getCode()
方法返回一个整数,可用于识别异常。
语法
$exception->getCode()
技术细节
返回值: | Returns an integer |
---|
相关页面
在我们的 PHP 异常章节中阅读有关异常的更多信息。
❮ PHP Exception 异常参考手册