Exception/getline-Phpdoc专题

Exception::getLine

获取创建的异常所在文件中的行号

说明

final public int <span class="methodname">Exception::getLine ( <span class="methodparam">void )

返回发生异常的代码在文件中的行号。

参数

此函数没有参数。

返回值

返回发生异常的代码在文件中的行号。

范例

示例 #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

参见

  • Throwable::getLine

本站为非盈利网站,作品由网友提供上传,如无意中有侵犯您的版权,请联系删除