MongoCollection::drop
(PECL mongo >=0.9.0)
MongoCollection::drop — Drops this collection
Описание
public array MongoCollection::drop
( void
)
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns the database response.
Примеры
Пример #1 MongoCollection::drop() example
This example demonstrates how to drop a collection and the response to expect.
<?php
$collection = $mongo->my_db->articles;
$response = $collection->drop();
print_r($response);
?>
Результатом выполнения данного примера
будет что-то подобное:
Array
(
[nIndexesWas] => 1
[msg] => all indexes deleted for collection
[ns] => my_db.articles
[ok] => 1
)