(No version information available, might only be in Git)
Gets the line in which the error occurred
final public int Error::getLine ( void )
Get line number where the error occurred.
Returns:
Returns the line number where the error occurred.
Examples:
Error::getLine() example
1 2 3 4 5 6 7 | <?php try { throw new Error( "Some error message" ); } catch (Error $e ) { echo "The error was created on line: " . $e ->getLine(); } ?> |
The above example will output something similar to:
The error was created on line: 3
See also:
Please login to continue.