PHP Portal » PHP Handbuch » Querying MongoDB

Werbung

Querying MongoDB


Querying by _id

Every object inserted is automatically assigned a unique _id field, which is often a useful field to use in queries.

Suppose that we wish to find the document we just inserted. Inserting adds and _id field to the document, so we can query by that:

PHP Code
1
2
3
4
$person = array("name" => "joe"); $people->insert($person); // now $joe has an _id field $joe = $people->findOne(array("_id" => $person['_id']));

Unless the user has specified otherwise, the _id field is a MongoId. The most common mistake is attepting to use a string to match a MongoId. Keep in mind that these are two different datatypes, and will not match each other in the same way that the string "array()" is not the same as an empty array. For example:

PHP Code
1
2
3
4
5
6
$person = array("name" => "joe"); $people->insert($person); // convert the _id to a string $pid = $person['_id'] . ""; // FAILS - $pid is a string, not a MongoId $joe = $people->findOne(array("_id" => $pid));

Arrays

Suppose that we wish to find all documents with an array element of a given value. For example, documents with a "gold" award, such as:

{ "_id" : ObjectId("4b06c282edb87a281e09dad9"), "awards" : ["gold", "silver", "bronze"]}

This can be done with a simple query, ignoring the fact that "awards" is an array:

PHP Code
1
$cursor = $collection->find(array("awards" => "gold"));

Suppose we are querying for a more complex object, if each element of the array were an object itself, such as:

{ 
     "_id" : ObjectId("4b06c282edb87a281e09dad9"), 
     "awards" : 
     [
        {
            "first place" : "gold"
        },
        {
            "second place" : "silver" 
        },
        {
            "third place" :  "bronze"
        }
     ]
}

Still ignoring that this is an array, we can use dot notation to query the subobject:

PHP Code
1
$cursor = $collection->find(array("awards.first place" => "gold"));

Notice that it doesn't matter that there is a space in the the field name (although it may be best not to use spaces, just to make things more readable).