(PHP 5, PHP 7)
Exception::getLine — 获取创建的异常所在文件中的行号
返回发生异常的代码在文件中的行号。
此函数没有参数。
返回发生异常的代码在文件中的行号。
Example #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