How to round a value in Twig

2020-06-01 02:27发布

I want to round a value in Twig.

Example: I want to display 80.5555 as 80.55.

Can any one suggest me how to do that?

3条回答
可以哭但决不认输i
2楼-- · 2020-06-01 03:08

Twig documentation says that there's a filter for this task, since 1.15.0:

just write {{80.5555|round}} http://twig.sensiolabs.org/doc/filters/round.html

查看更多
smile是对你的礼貌
3楼-- · 2020-06-01 03:16
{{ 80.5555 | number_format(2) }}

Here is the documentation number_format

查看更多
▲ chillily
4楼-- · 2020-06-01 03:21

You could use the format filter for that:

{{ '%.2f'|format(80.5555) }}

But note that it will round it to 80.56.

查看更多
登录 后发表回答