【发布时间】:2015-10-07 03:02:59
【问题描述】:
有没有办法在 laravel 中设置本地时区?
在config/app.php
'timezone' => 'UTC',
- 应该添加什么以使上面的时区值使用本地时区?
经过一番研究,偶然发现了以下PHP的处理方式:
$userTimezone = Auth::user()->timezone;
date_default_timezone_set($userTimezone);
// and change the configuration so they match
Config::set('app.timezone', $userTimezone)
但是,除了使用上面的代码转换时区之外,还有其他优雅的解决方案吗?
干杯
【问题讨论】:
标签: php laravel laravel-4 timezone laravel-5