-->

yii2 - how to set currency in main config

2020-07-18 06:41发布

问题:

I need to set currency format as default in config. Now when I change language in frontend the currency is changing too. How can I set it by default

回答1:

In Config/main.php eg:

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

      'formatter' => [
        'class' => 'yii\i18n\Formatter',
        'dateFormat' => 'dd.MM.yyyy',
        'decimalSeparator' => ',',
        'thousandSeparator' => ' ',
        'currencyCode' => 'EUR',
        'nullDisplay' => '',          
    ],