MongoDB::getCollectionNames

(PECL mongo >=1.3.0)

MongoDB::getCollectionNamesGet all collections from this database

Описание

public array MongoDB::getCollectionNames ([ bool $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.

Примеры

Пример #1 MongoDB::getCollectionNames() example

<?php

$m 
= new Mongo;
$collections $m->selectDB("demo")->getCollectionNames();
var_dump($collections);
?>

Результатом выполнения данного примера будет что-то подобное:

array(2) {
  [0]=>
  string(9) "addresses"
  [1]=>
  string(5) "users"
}

Смотрите также

Коментарии

Автор:
A small change to the earlier example will result in a more user-friendly output that will be easier on the eye:

<?php
$dbname 
'members';    // Previously created database
$conn = new MongoClient("localhost");

$list $conn->selectDB($dbname)->getCollectionNames();

foreach (
$list as $coltion) {
       
$colName $coltion;
        echo 
'<p>Collection name is: <em>';
        echo 
$colName;
        echo 
'.</em></p>';
    }
?>

This will produce an output similar to the following;

Collection name is: addresses.
2014-05-31 16:33:11
http://php5.kiev.ua/manual/ru/mongodb.getcollectionnames.html

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