MongoCollection::deleteIndexes

(PECL mongo >=0.9.0)
Delete all indices for this collection
public array MongoCollection::deleteIndexes ( void )
Returns:

Returns the database response.

Examples:
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);

?>

The above example will output something similar to:

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

MongoCollection::createIndex() -

MongoCollection::deleteIndex() -

doc_php
2016-02-24 16:20:36
Comments
Leave a Comment

Please login to continue.