码迷,mamicode.com
首页 > 其他好文 > 详细

yii 国际化

时间:2018-06-06 15:33:45      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:this   yii   nts   简单   highlight   app   ring   pat   国际   

http://www.yiichina.com/doc/guide/2.0/tutorial-i18n

config/main.php  

  外层加

‘language‘ => ‘en-US‘,
‘sourceLanguage‘ => ‘zh-CN‘,
components里加
‘i18n‘ => [
            ‘translations‘ => [
                ‘*‘ => [
                    ‘class‘ => ‘yii\i18n\PhpMessageSource‘,
                    //‘basePath‘ => ‘/messages‘,
                    ‘fileMap‘ => [
                        ‘collection‘ => ‘collection.php‘
                    ],
                ],
            ],
        ],

  

简单使用

Yii::t(‘app‘, ‘This is a string to translate!‘);

  

config同级目录下建messages目录

 

yii 国际化

标签:this   yii   nts   简单   highlight   app   ring   pat   国际   

原文地址:https://www.cnblogs.com/cxscode/p/9144474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!