No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

Exception::getTraceAsString

(PHP 5, PHP 7)

Exception::getTraceAsStringGets the stack trace as a string

Description

final public Exception::getTraceAsString ( void ) : string

Returns the Exception stack trace as a string.

PHP: Exception::getTraceAsString - Manual Home of Manuel PHP  Contents Haut

Parameters

This function has no parameters.

PHP: Exception::getTraceAsString - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns the Exception stack trace as a string.

PHP: Exception::getTraceAsString - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 Exception::getTraceAsString() example

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

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

The above example will output something similar to:

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

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph