yii2时区语言设置
Posted niuben
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2时区语言设置相关的知识,希望对你有一定的参考价值。
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时区语言设置的主要内容,如果未能解决你的问题,请参考以下文章