This extension is deprecated. Instead, the MongoDB extension should be used.
���ǹٷ��� MongoDB PHP ����
����һ��ʾ������������ �������ݿ⡢�����ĵ�����ѯ�ĵ���������ѯ������Ͽ����ӡ� ʵ���е�ÿһ�����и���ϸ��˵����ע�ͣ���
<?php
// ���ӷ�����
$m = new MongoClient();
// ѡ��һ�����ݿ�
$db = $m->comedy;
// ѡ��һ�����ϣ� Mongo ��"����"�൱�ڹ�ϵ�����ݿ��"��"��
$collection = $db->cartoons;
// ����һ���ĵ�����ע��"�ĵ�"�൱�ڹ�ϵ�����ݿ��"��"��
$document = array( "title" => "Calvin and Hobbes", "author" => "Bill Watterson" );
$collection->insert($document);
// �����һ���ĵ������Ľṹ��֮ǰ�IJ�ͬ
$document = array( "title" => "XKCD", "online" => true );
$collection->insert($document);
// ��ѯ�����е������ĵ�
$cursor = $collection->find();
// ������ѯ���
foreach ($cursor as $document) {
echo $document["title"] . "\n";
}
?>
�������̻������
Calvin and Hobbes XKCD