CakeFest 2024: The Official CakePHP Conference

Throwable::getTrace

(PHP 7, PHP 8)

Throwable::getTraceВозвращает трассировку стека

Описание

public Throwable::getTrace(): array

Возвращает трассировку стека в виде массива.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Возвращает трассировку стека в виде массива в таком же формате, что и debug_backtrace().

Смотрите также

add a note

User Contributed Notes 1 note

up
0
rasmus at mindplay dot dk
3 months ago
Note that, where `debug_backtrace()` accepts an argument, which lets you configure options for the backtrace, `getTrace()` has no such argument.

Whether the `getTrace` method captures arguments instead depends on the `zend.exception_ignore_args` INI setting, which must be set to `0` ahead of time, before an exception occurs. (notice the confusing double negation here - to *enable* capture of arguments, you must *disable* this INI flag.)

Unlike `debug_backtrace()`, the `getTrace` method does not appear to capture the `object` value.
To Top