Files
Twig/doc/tests/iterable.rst
T
Fabien Potencier 97167aab98 Merge branch '1.x' into 2.x
* 1.x:
  tweaked doc markup
  tweaked escape docs
2019-04-25 14:27:37 +02:00

17 lines
394 B
ReStructuredText

``iterable``
============
``iterable`` checks if a variable is an array or a traversable object:
.. code-block:: twig
{# evaluates to true if the foo variable is iterable #}
{% if users is iterable %}
{% for user in users %}
Hello {{ user }}!
{% endfor %}
{% else %}
{# users is probably a string #}
Hello {{ users }}!
{% endif %}