MongoCollection::deleteIndexes(PECL mongo >=0.9.0) MongoCollection::deleteIndexes — Delete all indices for this collection Описание
public array MongoCollection::deleteIndexes
( void
)
Список параметровУ этой функции нет параметров. Возвращаемые значенияReturns the database response. ПримерыПример #1 MongoCollection::deleteIndexes() example This example demonstrates how to delete all indexes from a collection and the response to expect.
<?phpРезультатом выполнения данного примера будет что-то подобное:
Array
(
[nIndexesWas] => 1
[msg] => all indexes deleted for collection
[ok] => 1
)
|
||