Answers for "twig in array"

PHP
1

twig string is in array

{% if color in ['red', 'blue', 'orange'] %}
    ...
{% endif %}
Posted by: Guest on November-11-2020
0

twig in array

{{ if myValue in myArray ? 'true' : 'false' }}

{% if myValue in myArray %}
    // true
{% endif %}
Posted by: Guest on September-04-2021

Browse Popular Code Answers by Language