“在”中Smarty 中的运算符?

发布于 2025-01-02 11:39:47 字数 204 浏览 1 评论 0 原文

Smarty3 是否具有类似于 Twig 的 操作符的“in”操作符:

{% if option in [1, 2, 3] %}

Does Smarty3 has the "in" operator that works like Twig's one:

{% if option in [1, 2, 3] %}

?

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

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

发布评论

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

评论(1

破晓 2025-01-09 11:39:47

是和否。 Smarty 没有自己的语法,但您可以这样做:

{if in_array("foo", ["bar", "foo"])}

就我个人而言,我发现 in 关键字令人困惑。 PHP 本身并不知道。 Javascript 是唯一与模板开发人员相关的其他编程语言,它将 in 关键字视为 array_key_exists() 而不是 in_array()。不确定我是否想要给定的模板引擎做一些不同的事情......

yes and no. Smarty does not have its own syntax for this, but you can do it like this:

{if in_array("foo", ["bar", "foo"])}

Personally I find the in keyword confusing. PHP itself doesn't know it. Javascript, the only other programming language relevant to a template developer, treats the in keyword as array_key_exists() rather than in_array(). Not sure if I wanted a given template engine to do something different…

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文