我有一个Twig问题。我有一个数组:
{% set frequency = [ 5,5,5,5,5,5,5,5,5,5,5 ] %}
并且shot.punctation
显示:5 6 9 3 5 6 4 2 6 5 6 3 2 4 2 8 3 2 1 4 7 5 5 6 10 9 2 7 8 6 2 3 4 1 3 8 9 7 3 4
。
我想做这样的事情:
{% for shot in shots %}
{% set frequency[shot.punctation] = frequency[shot.punctation] + 1 %}
{% endfor %}
但我不知道如何。
我需要计算数组中的每个变量。