(PHP 7, PHP 8)
Error::getCode — 获取错误代码
返回错误代码。
此函数没有参数。
返回错误代码,类型为 int
示例 #1 Error::getCode() 示例
<?phptry { throw new Error("Some error message", 30);} catch(Error $e) { echo "The Error code is: " . $e->getCode();}?>
上面的示例将输出类似于以下内容
The Error code is: 30