PHP Velho Oeste 2024

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 thrown on line: " . $e->getLine();
}
?>

以上示例的输出类似于:

The exception was thrown on line: 3

参见

add a note add a note

User Contributed Notes 1 note

up
0
Festus Ngor
4 years ago
Exception::getTraceAsString — Gets the stack trace as a string. So use $e->getTraceAsString() i.e.:

<?php
try {
    throw new
Exception("Some error message");
} catch(
Exception $e) {
    echo
"The exception was created from: \n\r" . $e->getTraceAsString();
}
?>
To Top