PHP Doku:: Fetches the object pointed to by a reference - mongodbref.get.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverTypesThe MongoDBRef classMongoDBRef::get

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoDBRef class

<<MongoDBRef::create

MongoDBRef::isRef>>

MongoDBRef::get

(PECL mongo >= 0.9.0)

MongoDBRef::getFetches the object pointed to by a reference

Beschreibung

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

Parameter-Liste

db

Database to use.

ref

Reference to fetch.

Rückgabewerte

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

Beispiele

Beispiel #1 MongoCollection::createDBRef() example

<?php

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

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

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)