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