GHopper
GHopper

Reputation: 387

Get rid of decimals in currency formatter

Yii2 application with config:

...
'formatter' => [
        'locale' => 'ru_RU',
    ],
],
...

I call from the template Yii::$app->formatter->asCurrency($item->price) and got 12 675,00 ₽. It is ok, but now I would like to get rid of the decimals at all.

What is the right way to do this?

Upvotes: 0

Views: 410

Answers (1)

Insane Skull
Insane Skull

Reputation: 9368

Try using NumberFormatter

Yii::$app->formatter->asCurrency(12675.00, null, [\NumberFormatter::MAX_SIGNIFICANT_DIGITS => 100])

asCurrency()

Upvotes: 2

Related Questions