gpt4 book ai didi

php - 如果不是变量 Twig 条件

转载 作者:行者123 更新时间:2023-12-02 01:05:20 26 4
gpt4 key购买 nike

我需要在 Twig 中设置一些条件,所以我有这个:

{% if app.session.get('campaignVersion') is not null and is not '4.4d'}
...
{% elseif app.session.get('campaignVersion') is null or '4.4d' %}
...
{% endif %}

但是我在语法和逻辑上有错误,也许它必须有一个标准的运算符,比如 !=,我做错了什么?谢谢帮助。

最佳答案

Twig 不是人类语言解释器:-)

Twig 无法隐含地知道谁是 中的主题并且不是“4.4d”

尝试:

{% if app.session.get('campaignVersion') is not null and app.session.get('campaignVersion') != '4.4d' %}

或者为了更好的可读性:

{% if app.session.get('campaignVersion') not in [null, '4.4d'] %}

关于php - 如果不是变量 Twig 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22959487/

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