(PHP 5, PHP 7, PHP 8)
Exception::getTrace — Obtiene la traza de la pila
Esta función no tiene parámetros.
Devuelve el seguimiento de pila de una excepción como un array.
Ejemplo #1 Ejemplo de Exception::getTrace()
<?php
function test() {
throw new Exception;
}
try {
test();
} catch(Exception $e) {
var_dump($e->getTrace());
}
?>El resultado del ejemplo sería algo similar a:
array(1) {
[0]=>
array(4) {
["file"]=>
string(22) "/home/bjori/tmp/ex.php"
["line"]=>
int(7)
["function"]=>
string(4) "test"
["args"]=>
array(0) {
}
}
}