Werbung
MongoDBRef::get
(PECL mongo >= 0.9.0)
MongoDBRef::get — Fetches the object pointed to by a reference
Beschreibung
Parameter-Liste
- db
-
Database to use.
- ref
-
Reference to fetch.
Rückgabewerte
Returns the document to which the reference refers or NULL if the document does not exist (the reference is broken).
Beispiele
PHP Code
1
2
3
4
5
2
3
4
5
// get $person out of the db
$person = $people->findOne();
// dereference the address
$address = MongoDBRef::get($people->db, $person['address']);
Siehe auch
- MongoDB::getDBRef - Fetches the document pointed to by a database reference
- MongoCollection::getDBRef - Fetches the document pointed to by a database reference