文字

MongoDB::selectCollection

(PECL mongo >=0.9.0)

MongoDB::selectCollectionGets a collection

说明

public MongoCollection MongoDB::selectCollection ( string $name )

参数

name

The collection name.

返回值

Returns a new collection object.

错误/异常

Throws Exception if the collection name is invalid.

用户评论:

[#1] asuquo dot ulo at techxion dot com [2014-09-06 06:33:15]

A simple script that selects a db and collection. 

$m = new MongoClient();
   echo "Connection to database successfully<br>";
   // select a database
   $db = $m->test;
   echo "Database test selected<br>";
//select a Collection
   $collection = $db->selectCollection("member");
   echo "Collection member selected succsessfully<br>";
   
?>

上一篇: 下一篇: