update : 2015.11.03
php.shukuma.com검색:
|
MongoCollection::drop(PECL mongo >=0.9.0) MongoCollection::drop — Drops 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 위 예제의 출력 예시: Array ( [nIndexesWas] => 1 [msg] => all indexes deleted for collection [ns] => my_db.articles [ok] => 1 ) |