MongoCollection::__get

(PECL mongo >=1.0.2)

MongoCollection::__getGets a collection

Описание

public MongoCollection MongoCollection::__get ( string $name )

A concise syntax for getting a collection with a dot-separated name. If a collection name contains strange characters, you may have to use MongoDB::selectCollection() instead.

<?php

$mongo 
= new MongoClient();

// the following two lines are equivalent
$collection $mongo->selectDB("foo")->selectCollection("bar.baz");
$collection $mongo->foo->bar->baz;

?>

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

name

The next string in the collection name.

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

Returns the collection.

Коментарии

<?php
class Test {
    public function 
__get ($param){
        echo 
"$param is overloaded!";
    }

}
$test= new Test;
$test->Property1//Result: Property1 is overloaded!
?>
2013-06-03 03:11:02
http://php5.kiev.ua/manual/ru/mongocollection.get.html

    Поддержать сайт на родительском проекте КГБ