MongoCollection::createDBRef

(PECL mongo >=0.9.0)

MongoCollection::createDBRefCreates a database reference

Beskrivelse

public array MongoCollection::createDBRef ( array $a )

Parametre

a

Object to which to create a reference.

Returnerings Værdier

Returns a database reference array.

Eksempler

Eksempel #1 MongoCollection::createDBRef() example

<?php

$songs 
$db->songs;
$playlists $db->playlists;

// create a reference to a song
$manamana $songs->findOne(array('title' => 'Ma na ma na'));
$refToSong $songs->createDBRef($manamana);

// add the reference to my playlist
$playlists->update(array('username' => 'me'), array('$push' => array('songlist' => $refToSong)));

?>

Se også

add a note add a note

User Contributed Notes

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