Error::getLine

(No version information available, might only be in Git)

Error::getLineGets the line in which the error occurred

Descrierea

final public Error::getLine ( void ) : int

Get line number where the error occurred.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the line number where the error occurred.

Exemple

Example #1 Error::getLine() example

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

Exemplul de mai sus va afișa ceva similar cu:

The error was created on line: 3

A se vedea și