I want to change the command from php to twig :
JavaScript
x
<?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
JavaScript
{% for opt in s_opts %}
<option value="{{ opt.id }}">{{ opt.name }}</option>
{% endfor %}