yii 프레임워크에서는 /protected/config/main.php에서 직접 시간대를 설정할 수 있습니다(보충: Yii2에서도 마찬가지입니다. common/config/main.php에 추가하세요). ~ (권장 학습: yii tutorial)
config 폴더, main.php,
return [ 'charset' => 'utf-8', 'language' => 'zh-CN', 'timeZone' => 'Asia/Shanghai', 'components' => [ 'cache' => [ 'class' => 'yii\caching\FileCache' ], 'formatter' => [ 'dateFormat' => 'yyyy-MM-dd', 'timeFormat' => 'HH:mm:ss', 'datetimeFormat' => 'yyyy-MM-dd HH:mm:ss' ] ] ];
위 내용은 yii2에서 시간대를 설정하는 위치의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!