简体   繁体   中英

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 } ?>

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM