小编Roh*_*edi的帖子

在YII中更改语言

在使用YII创建新站点后,我在protected/messages中添加了一个文件夹'fr',并添加了一个文件'site.php',其中包含:

return array('hello'=>'bonjour');

在view/layout/main.php中,我添加了以下代码:

<?php 
    // I change the language to english and french using session. 
    //  This is just for example.
    Yii::app()->language = 'fr'; 

    // I also used Yii::app()->setLanguage('fr');
    echo Yii::t('site','hello');
?>
Run Code Online (Sandbox Code Playgroud)

但语言没有翻译.我错在哪里.请建议

php yii

2
推荐指数
1
解决办法
7491
查看次数

标签 统计

php ×1

yii ×1