Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 16261 программист и 1778 роботов. Сейчас ищут 1967 программистов ...
MongoCollection::deleteIndexes - Delete all indices for this collection
Вернуться к: MongoCollection
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
$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
Вернуться к: MongoCollection