downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Exception::getTrace> <Exception::getFile
[edit] Last updated: Sat, 07 Jan 2012

view this page in

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



add a note add a note User Contributed Notes Exception::getLine
James 03-Feb-2011 02:20
Note that it appears to be the line number the Exception was created that is returned, *not* the line it was thrown from.

See this bug:
http://bugs.php.net/bug.php?id=53882

Wanted to note that here until documentation is fixed or bug report dealt with.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites