Answers for "twig dump"

2

print all variables twig

<ol>
  {% for key, value in _context  %}
    <li>{{ key }}</li>
  {% endfor %}
</ol>
Posted by: Guest on January-04-2021
4

dump all variables twig

{{ dump(user) }}
Posted by: Guest on July-14-2020
4

twig dump

{{ my_variable | json_encode(constant('JSON_PRETTY_PRINT')) }}
Posted by: Guest on November-04-2021
0

dump in twig

{{ dump(user) }}
Posted by: Guest on April-01-2021

Browse Popular Code Answers by Language