Exception
PHP Manual

Exception::getLine

(PHP 5 >= 5.1.0)

Exception::getLineخط ایجاد کننده استثنا را می‌یابد

Description

final public int Exception::getLine ( void )

شماره خط تولید کننده استثنا را باز می‌گرداند.

Parameters

This function has no parameters.

Return Values

شماره خط تولید کننده استثنا را باز می‌گرداند.

Examples

Example #1 نمونه Exception::getLine()

<?php
try {
    throw new 
Exception("Some error message");
} catch(
Exception $e) {
    echo 
"The exception was thrown on line: " $e->getLine();
}
?>

The above example will output something similar to:

The exception was thrown on line: 3


Exception
PHP Manual