MongoCollection::deleteIndexes
Delete all indices for this collection
Beschreibung
public array MongoCollection::deleteIndexes
( void
)
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
Returns the database response.
Beispiele
Beispiel #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);
?>
Das oben gezeigte Beispiel erzeugt
eine ähnliche Ausgabe wie:
Array
(
[nIndexesWas] => 1
[msg] => all indexes deleted for collection
[ok] => 1
)
Siehe auch
- MongoCollection::createIndex
- MongoCollection::deleteIndex