How to round a value in Twig

user519846 picture user519846 · Apr 3, 2012 · Viewed 14.7k times · Source

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?

Answer

jonfer picture jonfer · Apr 5, 2012
{{ 80.5555 | number_format(2) }}

Here is the documentation number_format