PHP 中使用MongoDb,对应的数据类型

MongoDB\BSON\ObjectID ==> 对应 _id
MongoDB\BSON\UTCDateTime  ==> 对应 ISODate() 
注意 
1. 参数为毫秒数, time()返回秒
2. 这样保存的时间,会相差八个小时,即时区差
例如:
'insert_time' => new UTCDateTime(strtotime('2018-11-11 10:19:11') * 1000)