(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
Error::getLine — Gets the line in which the error occurred
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