Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16142 программиста и 1779 роботов. Сейчас ищут 1633 программиста ...
Приступая к работе

MongoCollection::getDBRef - Fetches the document pointed to by a database reference

Вернуться к: MongoCollection

MongoCollection::getDBRef

(PECL mongo >=0.9.0)

MongoCollection::getDBRefFetches the document pointed to by a database reference

Описание

public array MongoCollection::getDBRef ( array $ref )

Список параметров

ref

A database reference.

Возвращаемые значения

Returns the database document pointed to by the reference.

Примеры

Пример #1 MongoCollection::getDBRef() example

<?php

$playlists 
$db->playlists;

$myList $playlists->findOne(array('username' => 'me'));

// fetch each song in the playlist
foreach ($myList['songlist'] as $songRef) {
    
$song $playlists->getDBRef($songRef);
    echo 
$song['title'] . "\n";
}

?>

Результатом выполнения данного примера будет что-то подобное:

Dazed and Confused
Ma na ma na
Bohemian Rhapsody

In the above example each $songRef looks something like the following:
    Array
    (
        [$ref] => songs
        [$id] => 49902cde5162504500b45c2c
    )
    

Смотрите также



Вернуться к: MongoCollection

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware