如何设置Laravel Carbon时区的时间戳?

前端之家收集整理的这篇文章主要介绍了如何设置Laravel Carbon时区的时间戳?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个主要在CET地区的项目.我在config / app.PHP中设置了CET,
但基准中的所有数据时间戳都以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
ÿ

Carbon使用默认的DateTime PHP对象,因此使用date_default_timezone_set()函数,例如: date_default_timezone_set(“欧洲/伦敦);

猜你在找的Laravel相关文章