MongoCollection
在线手册:中文 英文
PHP手册

MongoCollection::drop

(PECL mongo >=0.9.0)

MongoCollection::dropDrops this collection

说明

public array MongoCollection::drop ( void )

Drops this collection and deletes its indices.

参数

此函数没有参数。

返回值

Returns the database response.

范例

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);

?>

以上例程的输出类似于:

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

MongoCollection
在线手册:中文 英文
PHP手册