有人可以告诉我通过PHP查询Mongodb日期对象的最佳实践是什么? Mongo驱动程序有很多奇怪的类,例如MongoDB \ BSON \ Undefined或MongoDB \ BSON \ UTCDateTime ...现在我想向Mongodb发送查询,看起来像
$collection->find(['publishDate' => new DateTime()])
简单明了。我的问题是-是否可以通过这种方式进行编码,或者我需要编写类似
的内容$collection->find(['publishDate' => new MongoDB\BSON\UTCDateTime( microtime() )])
最佳做法是什么?谢谢。