downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

MongoCollection::distinct> <MongoCollection::deleteIndex
[edit] Last updated: Tue, 18 Jun 2013

view this page in

MongoCollection::deleteIndexes

(PECL mongo >=0.9.0)

MongoCollection::deleteIndexesDelete all indices for this collection

Descrierea

public array MongoCollection::deleteIndexes ( void )

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the database response.

Exemple

Example #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);

?>

Exemplul de mai sus va afișa ceva similar cu:

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


add a note add a note User Contributed Notes MongoCollection::deleteIndexes - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites