[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.138.125.199: ~ $
``dump``
========

The ``dump`` function dumps information about a template variable. This is
mostly useful to debug a template that does not behave as expected by
introspecting its variables:

.. code-block:: jinja

    {{ dump(user) }}

.. note::

    The ``dump`` function is not available by default. You must add the
    ``\Twig\Extension\DebugExtension`` extension explicitly when creating your Twig
    environment::

        $twig = new \Twig\Environment($loader, [
            'debug' => true,
            // ...
        ]);
        $twig->addExtension(new \Twig\Extension\DebugExtension());

    Even when enabled, the ``dump`` function won't display anything if the
    ``debug`` option on the environment is not enabled (to avoid leaking debug
    information on a production server).

In an HTML context, wrap the output with a ``pre`` tag to make it easier to
read:

.. code-block:: jinja

    <pre>
        {{ dump(user) }}
    </pre>

.. tip::

    Using a ``pre`` tag is not needed when `XDebug`_ is enabled and
    ``html_errors`` is ``on``; as a bonus, the output is also nicer with
    XDebug enabled.

You can debug several variables by passing them as additional arguments:

.. code-block:: jinja

    {{ dump(user, categories) }}

If you don't pass any value, all variables from the current context are
dumped:

.. code-block:: jinja

    {{ dump() }}

.. note::

    Internally, Twig uses the PHP `var_dump`_ function.

Arguments
---------

* ``context``: The context to dump

.. _`XDebug`:   https://xdebug.org/docs/display
.. _`var_dump`: https://secure.php.net/var_dump

Filemanager

Name Type Size Permission Actions
attribute.rst File 604 B 0644
block.rst File 791 B 0644
constant.rst File 487 B 0644
country_timezones.rst File 799 B 0644
cycle.rst File 548 B 0644
date.rst File 1.06 KB 0644
dump.rst File 1.56 KB 0644
html_classes.rst File 899 B 0644
include.rst File 2.24 KB 0644
index.rst File 213 B 0644
max.rst File 332 B 0644
min.rst File 331 B 0644
parent.rst File 563 B 0644
random.rst File 1.05 KB 0644
range.rst File 1.2 KB 0644
source.rst File 694 B 0644
template_from_string.rst File 888 B 0644