MongoCollection::drop
(PECL mongo >=0.9.0)
MongoCollection::drop — Drops this collection
Descrierea
public array MongoCollection::drop
( void
)
Drops this collection and deletes its indices.
Parametri
Această funcție nu are parametri.
Valorile întoarse
Returns the database response.
Exemple
Example #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);
?>
Exemplul de mai sus va afișa ceva similar cu:
Array
(
[nIndexesWas] => 1
[msg] => all indexes deleted for collection
[ns] => my_db.articles
[ok] => 1
)
There are no user contributed notes for this page.
