MongoCollection::deleteIndexes

(PECL mongo >=0.9.0)

MongoCollection::deleteIndexesDelete 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
)

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top