Exception::getLine
(PHP 5, PHP 7, PHP 8)
Exception::getLine — 例外が作られた行を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
例外が作られた行番号を返します。
例
例1 Exception::getLine() の例
<?php
try {
throw new Exception("Some error message");
} catch(Exception $e) {
echo "The exception was created on line: " . $e->getLine();
}
?>
上の例の出力は、 たとえば以下のようになります。
The exception was created on line: 3
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google