Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any filters or sth like that in twig template engine to format money or numbers?

share|improve this question

3 Answers

up vote 29 down vote accepted

The number_format filter has been included in the Twig core since the end of December 2011. The relevant commit is here.

Usage: number_format(decimals, decimalSeparator, thousandSeparator)

{{ total|number_format(2) }}
{{ total|number_format(0, '.') }}
{{ total|number_format(2, '.', ',') }}
share|improve this answer

Here's a filter that does number_format():

https://github.com/falmp/Twig-extensions/blob/master/lib/Twig/Extensions/Extension/Number.php

share|improve this answer
Yeah, that's how I fixed it, thanks. – umpirsky Jul 28 '11 at 20:29
Great, they add the filter to core and my answer gets unaccepted. Oh well. – thrashr888 Oct 14 '12 at 6:22

If you are using an older version of twig and you don't want to install any extensions you can use the format filter like this:

{{ "%.2f"|format(total) }}

Not very nice, but it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.