Error
PHP Manual

Error::getTraceAsString

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

Error::getTraceAsStringGets the stack trace as a string

Description

final public string Error::getTraceAsString ( void )

Returns the stack trace as a string.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Returns the stack trace as a string.

Exemples

Exemple #1 Error::getTraceAsString() example

<?php
function test() {
    throw new 
Error;
}

try {
    
test();
} catch(
Error $e) {
    echo 
$e->getTraceAsString();
}
?>

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

#0 /home/bjori/tmp/ex.php(7): test()
#1 {main}

Voir aussi


Error
PHP Manual