Reputation: 387
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
Reputation: 9368
Try using NumberFormatter
Yii::$app->formatter->asCurrency(12675.00, null, [\NumberFormatter::MAX_SIGNIFICANT_DIGITS => 100])
Upvotes: 2