Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16284 программиста и 1782 робота. Сейчас ищут 1913 программистов ...
Getting A Collection
Вернуться к: Tutorial
Getting a collection has the same syntax as getting a database:
<?php
$connection = new MongoClient();
$db = $connection->baz;
// select a collection:
$collection = $db->foobar;
// or, directly selecting a database and collection:
$collection = $connection->baz->foobar;
?>
A collection is analogous to a table (if you are familiar with relational databases).
See Also
The API documentation on the MongoCollection class contains more information about collection objects.
Вернуться к: Tutorial