Where to set language in yii
Mar 11, 2020 pm 02:23 PMHow to set the language in yii:
Method 1: Comment out the following code in app\web\index.php:
(new yii\web\Application($config))->run();
Add The following code:
$app = new \yii\web\Application($config); $app->language = "zh-CN";//设置中国区的语言 $app->run(); //(new yii\web\Application($config))->run();
Method 2: Set in app\config\web.php:
$config = [ .... 'language'=>'zh_CN', 'id' => 'basic', ... ]
Related tutorial recommendations: yii framework
The above is the detailed content of Where to set language in yii. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use PHP framework Yii to develop a highly available cloud backup system

Yii2 vs Phalcon: Which framework is better for developing graphics rendering applications?

Data query in Yii framework: access data efficiently

Symfony vs Yii2: Which framework is better for developing large-scale web applications?

How to convert yii objects into arrays or directly output to json format

Yii2 Programming Guide: How to run Cron service

CodeIgniter vs Yii2: Which framework is better for developing distributed web applications?
