如何设置日期和时间,也在php时区相同的Parse.com


How to set date and time also timezone in php same as Parse.com

当我迁移Parse.com到Php服务器时,我面临的日期和时间问题。谁能告诉我Parse.com用的是哪个日期时间格式,哪个时区?

Parse.com使用DateTime对象来存储UTC时区的日期和时间。

$startTime = new DateTime('2016-09-19 10:30:00', new DateTimeZone(date_default_timezone_get()));
$startTime->setTimeZone(new DateTimeZone('UTC'));

$parseObject->set('startTime', $startTime);