MongoDB::__get

(PECL mongo >=1.0.2)

MongoDB::__getコレクションを取得する

説明

public MongoDB::__get ( string $name ) : MongoCollection

データベースオブジェクトからコレクションを取得するための最も簡単な方法です。 コレクション名に特殊な文字が含まれている場合は、かわりに MongoDB::selectCollection() を使います。

<?php

$mongo 
= new MongoClient();

// 次の 2 行はどちらも同じ意味です。
$collection $mongo->selectDB("foo")->selectCollection("bar");
$collection $mongo->foo->bar;

?>

パラメータ

name

コレクションの名前。

返り値

コレクションを返します。