芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/batch.test
--TEST-- "batch" filter --TEMPLATE-- {% for row in items|batch(3) %}
{% for column in row %}
{{ column }}
{% endfor %}
{% endfor %} --DATA-- return array('items' => array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j')) --EXPECT--
a
b
c
d
e
f
g
h
i
j