MongoCollection::drop

(PECL mongo >=0.9.0)

MongoCollection::dropDrops this collection

Opis

public MongoCollection::drop ( void ) : array

Drops this collection and deletes its indices.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns the database response.

Przykłady

Przykład #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);

?>

Powyższy przykład wyświetli coś podobnego do:

Array
(
    [nIndexesWas] => 1
    [msg] => all indexes deleted for collection
    [ns] => my_db.articles
    [ok] => 1
)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top