yii2-如何在主配置中设置货币

Olg*_*ova 4 currency configuration-files currency-formatting yii2

我需要在配置中将货币格式设置为默认值。现在,当我在前端更改语言时,货币也在发生变化。默认情况下如何设置

sca*_*dge 6

在Config / main.php中,例如:

'component' => [
      ..........

      'formatter' => [
        'class' => 'yii\i18n\Formatter',
        'dateFormat' => 'dd.MM.yyyy',
        'decimalSeparator' => ',',
        'thousandSeparator' => ' ',
        'currencyCode' => 'EUR',
        'nullDisplay' => '',          
    ],
Run Code Online (Sandbox Code Playgroud)