MongoCollection::drop

(PECL mongo >=0.9.0)

MongoCollection::dropɾ���ü���

˵��

public MongoCollection::drop ( void ) : array

ɾ���ü��ϣ��Լ�����������

����

�˺���û�в�����

����ֵ

�������ݿ����Ӧ��

����

Example #1 MongoCollection::drop() ����

���������ʾ�����ɾ��һ�����ϣ����ҵõ���Ҫ�Ļ�Ӧ��

<?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
)