【elemMatch查询在php中不起作用】教程文章相关的互联网学习教程文章

elemMatch查询在php中不起作用【代码】

此mongodb查询可正常返回具有匹配子文档条件的文档db.user.find({Type: {"$in": ["local","google"]}, Alerts:{$elemMatch:{"Frequency.Type":"daily","IsActive":true}} })当我将其转换为php数组时,它不返回任何内容$qry = array("Type"=>array('$in'=>array("local","google")),array('Alerts'=>array('$elemMatch'=>array('Frequency.Type'=>'daily','IsActive'=>true))));这是文件的结构{"Email" : "someemail@domain.com","Ty...