MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Mongo DB ou requête en PHP

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.

Vous avez fourni un seul élément dans le tableau. Utiliser :

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