Answers for "twig tot array"

PHP
1

twig classes array to string

{{ [1, 2, 3]|join('|') }}
{# outputs 1|2|3 #}
Posted by: Guest on February-26-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