Error
PHP Manual

Error::getFile

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

Error::getFileGets the file in which the error occurred

Beschreibung

final public string Error::getFile ( void )

Get the name of the file the error occurred.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the filename in which the error occurred.

Beispiele

Beispiel #1 Error::getFile() example

<?php
try {
    throw new 
Error;
} catch(
Error $e) {
    echo 
$e->getFile();
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

/home/bjori/tmp/ex.php

Siehe auch


Error
PHP Manual