我将mongoDB中的日期存储为ISODate对象,看起来像这样
result = df_uut1.append(df_uut2)
result.index = [result['first'], result['second']]
result = result[['a', 'b']].astype(int)
result.sort_index(ascending=True, inplace=True)
我在MongoDB中有一个完整的日期范围查询,并使用此查询返回1152条记录:
{ "created_at" : ISODate("2018-01-20T11:39:22Z") }
但是,在将其转换为PHP查询时,我收到如下错误:
db.tweets.find({ 'created_at': {$gte: new Date("2018-01-20T00:00:00Z"), $lt: new Date("2018-01-25T00:00:00Z")}})
这是我的PHP查询:
Notice: A non well formed numeric value encountered
顺便说一下我使用“php_mongodb-1.3.4-5.6-ts-vc11”,最新的稳定的mongoDB PHP驱动程序。