Twig

The flexible, fast, and secure
template engine for PHP

a Symfony Product
Docs Tests iterable
You are reading the documentation for Twig 2.x. Switch to the documentation for Twig 1.x. 3.x.
Warning Twig version 2.x end of maintenance is scheduled for December 2023.

Questions & Feedback

License

Twig documentation is licensed under the new BSD license.

iterable

iterable checks if a variable is an array or a traversable object:

1
2
3
4
5
6
7
8
9
{# 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 %}
Website powered by Symfony and Twig, deployed on
The Twig logo is © 2010-2024 Symfony