Search code examples
twigtemplate-engine

How to round a value in Twig


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?


Solution

  • You could use the format filter for that:

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

    But note that it will round it to 80.56.