PHP Velho Oeste 2024

MongoDBRef::get

(PECL mongo >= 0.9.0)

MongoDBRef::getFetches the object pointed to by a reference

Descrição

public static MongoDBRef::get ( MongoDB $db , array $ref ) : array

Parâmetros

db

Database to use.

ref

Reference to fetch.

Valor Retornado

Returns the document to which the reference refers or NULL if the document does not exist (the reference is broken).

Exemplos

Exemplo #1 MongoCollection::createDBRef() example

<?php

// get $person out of the db
$person $people->findOne();

// dereference the address
$address MongoDBRef::get($people->db$person['address']);

?>

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top