Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18575 программистов и 1740 роботов. Сейчас ищут 1296 программистов ...
MongoDB::getDBRef - Fetches the document pointed to by a database reference
Вернуться к: MongoDB
MongoDB::getDBRef
(PECL mongo >=0.9.0)
MongoDB::getDBRef — Fetches the document pointed to by a database reference
Описание
public array MongoDB::getDBRef
( array
$ref
)Список параметров
-
ref
-
A database reference.
Возвращаемые значения
Returns the document pointed to by the reference.
Примеры
Пример #1 MongoDB::getDBRef() example
Example demonstrating how to get a database reference and what the expected input is.
<?php
$ref = array(
'$ref' => 'profiles',
'$id' => new MongoId('47cc67093475061e3d9536d2')
);
$profile = $db->getDBRef($ref);
?>
See MongoDB::createDBRef() for more information about how to programatically create DB references.
Вернуться к: MongoDB