(PECL mongo >= 0.9.0)
MongoDBRef::get — Fetches the object pointed to by a reference
Database to use.
Reference to fetch.
Returns the object or NULL.
Example #1 MongoCollection::createDBRef() example
<?php
// get $person out of the db
$person = $people->findOne();
// dereference the address
$address = MongoDBRef::get($person['address']);
?>