smarty - 一个括号中存在两个或多个不平等条件?

发布于 2024-12-06 06:13:34 字数 253 浏览 1 评论 0原文

这是我在 smarty 中的代码:

{if $cat!="1_5"} do something {/if}

如果我使用 or 添加附加条件:

{if $cat!="1_5" or $cat!="2_30"} do something {/if}

那么它就无法以正确的方式工作。为什么?是否可以在一个括号中使用两个或多个不等式条件?

This is my code in smarty:

{if $cat!="1_5"} do something {/if}

If I add additional condition with or:

{if $cat!="1_5" or $cat!="2_30"} do something {/if}

Then it doesn't work in proper way. Why? Is this possible to use in one brackets two or more inequality conditions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贪恋 2024-12-13 06:13:34

好的,我们有了类别 1_52_30

让我们看看当 $cat="2_30" 时,if 条件中会发生什么

$cat!="1_5"     $cat!="2_30"                    $cat!="1_5"    $cat!="2_30"
       |         |                                    |         |
     TRUE      FALSE                                TRUE      FALSE
        \       /                                      \       /
         \     /                   but:                 \     /
          \   /                                          \   /
            OR                                             AND
            |                                               |
          TRUE                                            FALSE
     //do something                                //don't do something

。明白了:) 你必须使用 AND 而不是 OR

{if $cat!="1_5" and $cat!="2_30"} do something {/if}

Alright, so we have the categories 1_5 and 2_30

let's see what happens in your if-condition when $cat="2_30"

$cat!="1_5"     $cat!="2_30"                    $cat!="1_5"    $cat!="2_30"
       |         |                                    |         |
     TRUE      FALSE                                TRUE      FALSE
        \       /                                      \       /
         \     /                   but:                 \     /
          \   /                                          \   /
            OR                                             AND
            |                                               |
          TRUE                                            FALSE
     //do something                                //don't do something

So, you get the idea :) You have to use AND instead of OR:

{if $cat!="1_5" and $cat!="2_30"} do something {/if}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文