php教程

MongoCollection::deleteIndexes

(PECL mongo >=0.9.0)

MongoCollection::deleteIndexes删除集合的所有索引

说明

public MongoCollection::deleteIndexes ( void ) : array

参数

此函数没有参数。

返回值

返回数据库的响应。

范例

Example #1 MongoCollection::deleteIndexes() 例子

这个例子演示了如何从集合中删除所有索引并得到响应

<?php

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

?>

以上例程的输出类似于:

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

参见

User Contributed Notes

There are no user contributed notes for this page.

CopyRight © 2008-2022 verySource.Com All Rights reserved. 京ICP备17048824号-1 京公网安备:11010502034788