The "$id" has to be a
new MongoId("...")
in PHP driver!
Ref:
array(
"$ref" => "other_collection",
"$id" => new MongoId("the_referenced_dataobject_id")
)
(PECL mongo >=0.9.0)
MongoCollection::getDBRef — データベース参照が指すドキュメントを取得する
$ref
) : array
ref
データベース参照。
参照が指し示すデータベースドキュメントを返します。
例1 MongoCollection::getDBRef() の例
<?php
$playlists = $db->playlists;
$myList = $playlists->findOne(array('username' => 'me'));
// プレイリストの各曲を取得します
foreach ($myList['songlist'] as $songRef) {
$song = $playlists->getDBRef($songRef);
echo $song['title'] . "\n";
}
?>
上の例の出力は、 たとえば以下のようになります。
Dazed and Confused Ma na ma na Bohemian Rhapsody
Array ( [$ref] => songs [$id] => 49902cde5162504500b45c2c )
The "$id" has to be a
new MongoId("...")
in PHP driver!
Ref:
array(
"$ref" => "other_collection",
"$id" => new MongoId("the_referenced_dataobject_id")
)