php mongo扩展升级为mongodb 这个取代new MongoDate() 是什么

$tz = new DateTimeZone('PRC');
$time =new MongoDB\BSON\UTCDateTime(time()*1000); 
$date_time
= $time->toDateTime()->setTimezone($tz)->format(DATE_ATOM);

 

存储到mongodb的时间格式为:

2017-02-09T17:47:54+08:00

 

注:UTC为格林尼治时间的标准时间,DATE_ATOM参数格式为"Y-m-d\TH:i:sP",显示格式为2017-02-09T17:47:54+00:00,设置PRC北京时区后,变成2017-02-09T17:47:54+08:00

的北京时间格式。

 

posted on 2017-02-09 19:11  ziyi_ang  阅读(610)  评论(0编辑  收藏  举报

导航