update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the line in which the exception occurred

Exception::getLine

(PHP 5 >= 5.1.0)

Exception::getLineGets the line in which the exception occurred

설명

final public int Exception::getLine ( void )

Get line number where the exception was created.

인수

이 함수는 인수가 없습니다.

반환값

Returns the line number where the exception was created.

예제

Example #1 Exception::getLine() example

<?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

참고