问题 I want my currency to ignore decimal value, so far I have this: main.php: 'formatter' => [ 'class' => 'yii\i18n\Formatter', 'thousandSeparator' => '.', 'decimalSeparator' => ',', 'currencyCode' => '€', ], view: [ 'attribute' => 'Score', 'format' => 'currency', ], Any idea on how to move forward? 回答1: The manual on currencyCode : The 3-letter ISO 4217 currency code indicating the default currency to use Try setting currencyCode to 'EUR' (though that doesn't seem to be that important) and put