我有一个主要在CET地区的项目.我在config / app.PHP中设置了CET,
但基准中的所有数据时间戳都以UTC时间存储?
但基准中的所有数据时间戳都以UTC时间存储?
如何设置时间戳的“全局”时区?
我做了这个测试:
<?PHP $timezone = date_default_timezone_get(); echo "The current server timezone is: " . $timezone; echo "<br />".date('m/d/Y h:i:s a',time()); $mytime = Carbon\Carbon::now(); echo "<br />".$mytime->toDateTimeString(); ?>
这是结果:
The current server timezone is: CET 06/09/2016 12:06:04 pm 2016-06-09 11:06:04
TNX
ÿ