Skip to content
Advertisement

Convert Looping from php to twig

I want to change the command from php to twig :

<?php for($__i = 0; $__i < sizeof($s_opts); $__i++) { ?>

<option value="<?php echo $s_opts[$__i]['id']; ?>"><?php echo $s_opts[$__i]['name']; ?></option> 

<?php } ?>

Advertisement

Answer

Here’s one way of doing this

{% for opt in s_opts %}
    <option value="{{ opt.id }}">{{ opt.name }}</option> 
{% endfor %}

https://twig.symfony.com/doc/3.x/tags/for.html

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement