Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16099 программистов и 1772 робота. Сейчас ищут 1823 программиста ...
MongoCollection::createDBRef - Creates a database reference
Вернуться к: MongoCollection
MongoCollection::createDBRef
(PECL mongo >=0.9.0)
MongoCollection::createDBRef — Creates a database reference
Описание
Список параметров
-
document_or_id
-
If an array or object is given, its _id field will be used as the reference ID. If a MongoId or scalar is given, it will be used as the reference ID.
Возвращаемые значения
Returns a database reference array.
If an array without an _id field was provided as the
document_or_id parameter, NULL
will be returned.
Примеры
Пример #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)));
?>
Смотрите также
- MongoCollection::getDBRef() - Fetches the document pointed to by a database reference
Вернуться к: MongoCollection