PHP 中的 Mongo DB $or查询
我无法弄清楚从带有参数的集合中选择我的寿命。它对我来说根本不起作用,我真的找不到任何关于php的文档。or
下面是我的示例代码,即使它们存在于集合中,也不会返回任何内容:
$cursor = $products->find(
array(
'$or' => array(
"brand" => "anti-clothes",
"allSizes" => "small"
)
)
);