Twig

灵活、快速且安全的
PHP 模板引擎

a Symfony Product
Docs mapping
您正在阅读 Twig 3.x 的文档。切换到 Twig 1.x, 2.x 的文档。

问题与反馈

许可协议

Twig 文档 基于新 BSD 许可协议 获得许可。

mapping

mapping 检查变量是否为 mapping

1
2
3
4
5
6
7
{% set users = {alice: "Alice Dupond", bob: "Bob Smith"} %}
{# evaluates to true if the users variable is a mapping #}
{% if users is mapping %}
    {% for key, user in users %}
        {{ key }}: {{ user }};
    {% endfor %}
{% endif %}