|
MongoDB::dropDrops this database Description
public array MongoDB::drop
( void
)
This drops the database currently being used. This is identical to running:
<?phpParametersThis function has no parameters. Return ValuesReturns the database response. ExamplesExample #1 MongoDB::drop example This example demonstrates how to drop a mongo database and the response to expect.
<?phpThe above example will output something similar to:
Array
(
[dropped] => foo.$cmd
[ok] => 1
)
|