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