如何在twig模板引擎中使用php字符串函数

发布于 2025-01-04 11:55:40 字数 174 浏览 0 评论 0原文

我想在 twig 中使用一些 php 字符串函数。例如,

如何在 twing 中编写以下代码?

if (!empty($message) && substr_count($message, 'blabla')) {
   ....
   ....
}

I want to use few php string functions in twig. For e.g.

How to write below code in twing?

if (!empty($message) && substr_count($message, 'blabla')) {
   ....
   ....
}

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

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

发布评论

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

评论(2

差↓一点笑了 2025-01-11 11:55:40

你不能,这就是 twig 的全部意义所在。
模板应该只负责显示数据。

在这种特定情况下,您可以创建一个 TWIG 变量,然后简单地传递 TRUE 或 FALSE,这样您的 twig 代码将如下所示:

{% if display_message %}
...
{% enfif %}

您可以查看 twig 模板中可用的表达式列表,strstr_count 不属于其中:( http://twig.sensiolabs.org/doc/templates.html#expressions

You can't, and that's the whole point of twig.
Template should only take care of displaying data.

In that specific case, you could create a TWIG variable, and simply pass TRUE or FALSE, so that you twig code would look like:

{% if display_message %}
...
{% enfif %}

You can look at the list of expressions that are available in the twig template, strstr_count is not part of them :( http://twig.sensiolabs.org/doc/templates.html#expressions

眉目亦如画i 2025-01-11 11:55:40

使用过滤器:

{% if message is not empty and ... %}
 ...
{% endif %}

我认为 twig 没有等效的 substr_count ,您可以进行测试并将结果传递给模板,或者创建一个 twig 扩展并自己实现

http://twig.sensiolabs.org/documentation

Use filters:

{% if message is not empty and ... %}
 ...
{% endif %}

I think there is not a substr_count equivalent for twig, you can either make the test and pass the result to the template or create a twig extension and implement it yourself

http://twig.sensiolabs.org/documentation

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