Error::getLine

(No version information available, might only be in Git)

Error::getLineGets the line in which the error occurred

説明

final public Error::getLine ( void ) : int

Get line number where the error occurred.

パラメータ

この関数にはパラメータはありません。

返り値

Returns the line number where the error occurred.

例1 Error::getLine() example

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

上の例の出力は、 たとえば以下のようになります。

The error was created on line: 3

参考

  • Throwable::getLine() - オブジェクトのインスタンスが作られた行番号を取得する