How to retrieve all Variables from a Twig Template?

前端 未结 14 1484
抹茶落季
抹茶落季 2020-12-08 00:24

Is it possible to retrieve all variables inside a Twig template with PHP?

Example someTemplate.twig.php:

Hello {{ name }}, 
your new email is {{ ema         


        
14条回答
  •  一生所求
    2020-12-08 00:56

    This is useful I find to get all the top-level keys available in the current context:

      {% for key, value in _context %}
    1. {{ key }}
    2. {% endfor %}

    Thanks to https://www.drupal.org/node/1906780

提交回复
热议问题