循环计数

时间:2011-12-26 17:32:02

标签: twig

您好我想做类似的事情:

<?php $count = 0; foreach($a as $v): $count++; ?>
  <?php if ($count%2 == 0): ?>
    ...
  <?php endif; ?>
<?php endforeach; ?>

在树枝上:

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

但我如何才能使用循环变量?

2 个答案:

答案 0 :(得分:60)

显然twig在for循环中定义了一些loop variables

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

答案 1 :(得分:24)

如果您将其用于样式,则可以执行以下操作:

{% for v in a %} 
  <div class="link {{ cycle(['even', 'odd'], loop.index0) }}">
  </div>
{% endfor %}