Error::getLine

(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:

Throwable::getLine() -

doc_php
2016-02-24 15:53:30
Comments
Leave a Comment

Please login to continue.