MongoDB::getDBRef

(PECL mongo >=0.9.0)

MongoDB::getDBRefFetches 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.

Коментарии

Note, that the $id portion of the array MUST be a MongoId object, otherwise it will fail.
2011-09-19 02:35:37
http://php5.kiev.ua/manual/ru/mongodb.getdbref.html
Please, edit the page because '$id' should be object(MongoId)[7] public '$id' => string '' not just array. It confuse a lot.
2012-11-02 12:44:51
http://php5.kiev.ua/manual/ru/mongodb.getdbref.html

    Поддержать сайт на родительском проекте КГБ