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

MongoCollection::deleteIndexes

(PECL mongo >=0.9.0)

MongoCollection::deleteIndexesDelete all indices for this collection

说明

public array MongoCollection::deleteIndexes ( void )

参数

此函数没有参数。

返回值

Returns the database response.

范例

Example #1 MongoCollection::deleteIndexes() example

This example demonstrates how to delete all indexes from a collection and the response to expect.

<?php

$collection 
$mongo->my_db->articles;
$response $collection->deleteIndexes();
print_r($response);

?>

以上例程的输出类似于:

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

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