str-6ren">
gpt4 book ai didi

php - 获取 Twig 中数组的索引#

转载 作者:可可西里 更新时间:2023-11-01 13:13:00 32 4
gpt4 key购买 nike

尝试在 twig 中输出数组的索引号,但在文档中找不到它。有谁知道怎么弄吗?

array(2) {
[0]=>
array(2) {
["testimonial"]=>
string(18) "Derby Heist Test 1"
["author"]=>
string(6) "test 1"
}
[1]=>
array(2) {
["testimonial"]=>
string(18) "Derby Heist Test 2"
["author"]=>
string(6) "test 2"
}
}

所以我想在 for 循环中输出索引号 0 和 1。请帮忙。

最佳答案

您可以使用 The loop variable例如:

{% for user in users %}
{{ loop.index }} - {{ user.username }}
{% endfor %}

loop.index The current iteration of the loop. (1 indexed)

loop.index0 The current iteration of the loop. (0 indexed)

希望对你有帮助

关于php - 获取 Twig 中数组的索引#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41832790/

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