公告
财富商城
积分规则
提问
发文
2020-06-01 02:27发布
贪生不怕死
I want to round a value in Twig.
Example: I want to display 80.5555 as 80.55.
80.5555
80.55
Can any one suggest me how to do that?
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
{{80.5555|round}}
{{ 80.5555 | number_format(2) }}
Here is the documentation number_format
You could use the format filter for that:
{{ '%.2f'|format(80.5555) }}
But note that it will round it to 80.56.
80.56
最多设置5个标签!
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.htmlHere is the documentation number_format
You could use the format filter for that:
But note that it will round it to
80.56
.