PHP 中的 Mongo DB $or查询

2022-08-30 22:44:59

我无法弄清楚从带有参数的集合中选择我的寿命。它对我来说根本不起作用,我真的找不到任何关于php的文档。or

下面是我的示例代码,即使它们存在于集合中,也不会返回任何内容:

$cursor = $products->find(
    array(
        '$or' => array(
            "brand" => "anti-clothes",
            "allSizes" => "small"
        )
    )
);

答案 1
The $or operator lets you use boolean or in a query.
You give $or an array of expressions, any of which can satisfy the query.

您在数组中只提供了一个元素。用:

find(array('$or' => array(
  array("brand" => "anti-clothes"),
  array("allSizes" => "small")
)));

答案 2

推荐