Edit on GitHub
Jump to docs navigation

Bolt Internals / backtrace() Twig tag

Note: You are currently reading the documentation for Bolt 2.2. Looking for the documentation for Bolt 5.2 instead?

Using this function you can get a backtrace throught the code to the current point in the execution. Useful for when you're debugging something, and you're not quite sure how you got here to begin with. In your templates, use the following:

    {{ backtrace() }}

In your code you can also use backtrace, like this:

    use Symfony\Component\VarDumper\VarDumper;

    VarDumper::dump(debug_backtrace());

Or, using the (global) shortcut:

    dump(debug_backtrace());

The optional parameters denotes the options and maximum depth of the output of the backtrace. See the page on php.net: debug-backtrace.php().



Edit this page on GitHub
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.