yii2 - how to set currency in main config

2020-07-18 06:04发布

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条回答
迷人小祖宗
2楼-- · 2020-07-18 06:51

In Config/main.php eg:

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

      'formatter' => [
        'class' => 'yii\i18n\Formatter',
        'dateFormat' => 'dd.MM.yyyy',
        'decimalSeparator' => ',',
        'thousandSeparator' => ' ',
        'currencyCode' => 'EUR',
        'nullDisplay' => '',          
    ],
查看更多
登录 后发表回答