MongoDB::drop

(PECL mongo >=0.9.0)

MongoDB::dropDrops this database

Beschreibung

public MongoDB::drop ( void ) : array

This drops the database currently being used.

This is identical to running:

<?php

public function drop() {
    
$this->command(array("dropDatabase" => 1));
}

?>

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns the database response.

Beispiele

Beispiel #1 MongoDB::drop() example

This example demonstrates how to drop a mongo database and the response to expect.

<?php

$db 
$mongo->foo;
$response $db->drop();
print_r($response);

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Array
(
    [dropped] => foo.$cmd
    [ok] => 1
)