yii에서 언어를 설정하는 방법:
방법 1: appwebindex.php에서 다음 코드를 주석 처리합니다.
(new yii\web\Application($config))->run();
다음 코드를 추가합니다:
$app = new \yii\web\Application($config); $app->language = "zh-CN";//设置中国区的语言 $app->run(); //(new yii\web\Application($config))->run();
방법 2: appconfigweb.php에서 설정:
$config = [ .... 'language'=>'zh_CN', 'id' => 'basic', ... ]
관련 튜토리얼 추천: yii Framework
위 내용은 yii에서 언어를 설정하는 곳의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!