Search code examples
phpyii2currencyformatter

Yii2: How to get rid of decimals (cents) if the value is integer?


I am using this function

Yii::$app->formatter->asCurrency(12321.00, 'EUR');

The result is 12 321,00 €. But I wanted it to show 12 321 € if the decimals are 00...


Solution

  • Another way would be:

    \Yii::$app->formatter->asCurrency(12321.00, 'EUR',[\NumberFormatter::MAX_SIGNIFICANT_DIGITS=>100])
    

    Output:

    €12,321
    

    -

    \Yii::$app->formatter->asCurrency(9912321.00, 'EUR',[\NumberFormatter::MAX_SIGNIFICANT_DIGITS=>100])
    

    Output:

    €9,912,321