gpt4 book ai didi

twig - 循环计数

转载 作者:行者123 更新时间:2023-12-03 09:00:13 25 4
gpt4 key购买 nike

您好我想做这样的事情:

<?php $count = 0; foreach($a as $v): $count++; ?>
<?php if ($count%2 == 0): ?>
...
<?php endif; ?>
<?php endforeach; ?>
在 Twig 上:
{% for v in a %} 
{% if ??? is even %}
...
{% endif %}
{% endfor %}
但是我怎样才能让变量随着loop演变呢?

最佳答案

显然,twig在for循环内定义了一些loop variables:

{% for v in a %}
{% if loop.index0 is even %}
...
{% endif %}
{% endfor %}

关于twig - 循环计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8637843/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com