yii框架中,可以直接在/protected/config/main.php中设置时区,即可(补充:yii2方法也是一样,在common/config/main.php中添加)。 (推荐学习:yii教程)
在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哪里设置时区的详细内容。
