MongoCollection::drop

(PECL mongo >=0.9.0)

MongoCollection::dropDrops this collection

설명

public array MongoCollection::drop ( void )

Drops this collection and deletes its indices.

인수

이 함수는 인수가 없습니다.

반환값

Returns the database response.

예제

Example #1 MongoCollection::drop() example

This example demonstrates how to drop a collection and the response to expect.

<?php

$collection 
$mongo->my_db->articles;
$response $collection->drop();
print_r($response);

?>

위 예제의 출력 예시:

Array
(
    [nIndexesWas] => 1
    [msg] => all indexes deleted for collection
    [ns] => my_db.articles
    [ok] => 1
)
add a note add a note

User Contributed Notes

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