Error
PHP Manual

Error::getFile

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

Error::getFileGets the file in which the error occurred

Description

final public string Error::getFile ( void )

Get the name of the file the error occurred.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Returns the filename in which the error occurred.

Exemples

Exemple #1 Error::getFile() example

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

L'exemple ci-dessus va afficher quelque chose de similaire à :

/home/bjori/tmp/ex.php

Voir aussi


Error
PHP Manual