yii2 - how to set currency in main config

旧街凉风 提交于 2019-12-06 06:11:33

问题


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' => '',          
    ],


来源:https://stackoverflow.com/questions/31201293/yii2-how-to-set-currency-in-main-config

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!