Exception::getLine

(PHP 5, PHP 7, PHP 8)

Exception::getLine获取创建异常的行号

描述

final public Exception::getLine(): int

获取创建异常的行号。

参数

此函数没有参数。

返回值

返回创建异常的行号。

示例

示例 #1 Exception::getLine() 示例

<?php
try {
throw new
Exception("Some error message");
} catch(
Exception $e) {
echo
"The exception was created on line: " . $e->getLine();
}
?>

上面的示例将输出类似以下内容

The exception was created on line: 3

参见

添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top