1.在web/index.php中
(new yiiwebApplication($config))->run();
- $app = new yiiwebApplication($config);
- $app->language = "zh-CN";//设置中国区的语言
- $app->run();
- //(new yiiwebApplication($config))->run();
2.appconfigweb.php中
$config = [ 'id' => 'basic', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'defaultRoute' => 'organization-manage/work-discuss/index', 'layout' => 'main', 'language'=>'zh-CN', 'timeZone'=>'Asia/Shanghai',