- PHP 手册
- 函数参考
- 数据库扩展
- 针对各数据库系统对应的扩展
- Mongo
- 核心类
- MongoCollection
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 )
参见
- MongoCollection::createIndex() - Creates an index on the specified field(s) if it does not already exist
- MongoCollection::deleteIndex() - Deletes an index from this collection
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/mongocollection.deleteindexes.php