Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有 twig 模板引擎的等效函数或 PHP 的ceil函数的过滤器。我查看了文档,但找不到现成的过滤器或功能。
也许您可以尝试使用 // 运算符,如下所示:
{{20 // 1 + 1}}
如果这对您来说还不够短,那么您可能应该编写自己的树枝扩展
Twig 最近添加了这个功能:
{{ (3.333)|round(0, 'ceil') }}
在此处查看文档