(PECL mongo >=1.3.0)
MongoDB::getCollectionNames — Get all collections from this database
$includeSystemCollections
= false
] )Returns an array of all the collection names for the given database.
includeSystemCollections
Include system collections.
Returns the names of the all the collections in the database as an array.
Example #1 MongoDB::getCollectionNames() example
<?php
$m = new MongoClient;
$collections = $m->selectDB("demo")->getCollectionNames();
foreach ($collections as $collectionName) {
echo "Found collection: ", $collectionName, "\n";
}
?>
The above example will output something similar to:
... Found collection: img Found collection: beer Found collection: collation ...