例外が作られた行を取得する
例外が作られた行番号を取得します。
この関数にはパラメータはありません。
例外が作られた行番号を返します。
例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