Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18038 программистов и 1743 робота. Сейчас ищут 1266 программистов ...
MongoDBRef::get - Fetches the object pointed to by a reference
Вернуться к: MongoDBRef
MongoDBRef::get
(PECL mongo >= 0.9.0)
MongoDBRef::get — Fetches the object pointed to by a reference
This extension that defines this class is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this class in the new extension.
The concept of database references, and hence this class, has been deprecated.
Описание
Список параметров
-
db
-
Database to use.
-
ref
-
Reference to fetch.
Возвращаемые значения
Returns the document to which the reference refers or NULL
if the document
does not exist (the reference is broken).
Примеры
Пример #1 MongoCollection::createDBRef() example
<?php
// get $person out of the db
$person = $people->findOne();
// dereference the address
$address = MongoDBRef::get($people->db, $person['address']);
?>
Смотрите также
- MongoDB::getDBRef() - Fetches the document pointed to by a database reference
- MongoCollection::getDBRef() - Fetches the document pointed to by a database reference
Вернуться к: MongoDBRef