Php/ref exception getcode

来自菜鸟教程
跳转至:导航、​搜索

PHP异常getCode()方法

❮PHP异常参考

引发异常并输出其代码:

<?php
try {
  throw new Exception("An error occurred", 120);
} 
  catch(Exception $e) {
  echo "Error code: " . $e->getCode();
}
?>

定义和用法

The getCode() 方法返回一个整数,该整数可用于标识异常。

句法

$exception->getCode()

技术细节

返回值: 返回一个整数

相关页面

在我们的文章中阅读有关异常的更多信息 PHP例外章节

.

❮PHP异常参考