Install the php extension of mongodb on windows
Download address https://s3.amazonaws.com/drivers.mongodb.org/php/index.html
Find the corresponding php version of the dll file, download php_mongo.dll, and put Go to the ext directory under the php installation directory, modify php.ini, add an extension=php_mongo.dll, no dll supporting php7 is found
Get the MongoClient object, new comes out
Get the database object db, through the database of the MongoClient object Attribute, $MongoClient->database name
Get the collection, through the collection attribute of the db object, $db->collection name
Create a collection, call the createCollection() method of the db object,
call the find of the collection object () method, query data, $collection->find()
Call the update () method of the collection object, update the data, $collection->update($condition,$data);
Call the insert of the collection object () method, insert data, $collection->insert($data);
<?<span>php </span><span>//</span><span> 连接到mongodb</span><span>$mongoClient</span> = <span>new</span><span> MongoClient(); </span><span>//</span><span> 选择一个数据库</span><span>$db</span> = <span>$mongoClient</span>-><span>test; </span><span>//</span><span>获取集合</span><span>$collection</span>=<span>$db</span>-><span>users; </span><span>//</span><span>更新文档</span><span>$condition</span>=<span>array</span><span>(); </span><span>$condition</span>["id"]=1<span>; </span><span>$data</span>=<span>array</span><span>(); </span><span>$data</span>['name']="wangwu"<span>; </span><span>$data</span>['age']="11"<span>; </span><span>$collection</span>->update(<span>$condition</span>,<span>$data</span><span>); </span><span>//</span><span>插入文档</span><span>$data</span>=<span>array</span><span>(); </span><span>$data</span>['id']=4<span>; </span><span>$data</span>['name']="哈哈"<span>; </span><span>$data</span>['age']="11"<span>; </span><span>$collection</span>->insert(<span>$data</span><span>); </span><span>//</span><span>删除文档</span><span>$condition</span>=<span>array</span><span>(); </span><span>$condition</span>['id']=2<span>; </span><span>$collection</span>->remove(<span>$condition</span><span>); </span><span>//</span><span>查询文档</span><span>$users</span>=<span>$collection</span>-><span>find(); </span><span>foreach</span> (<span>$users</span><span>as</span><span>$k</span> => <span>$v</span><span>) { </span><span>print_r</span>(<span>$v</span><span>); } </span>?>
The above introduces [MongoDB] mongodb and php, including the content of mongodb and php. I hope it will be helpful to friends who are interested in PHP tutorials.