Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

twig check if variables iterable

{# 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 %}
Source by twig.symfony.com #
 
PREVIOUS NEXT
Tagged: #twig #check #variables #iterable
ADD COMMENT
Topic
Name
1+6 =