[MongoDB] mongodb与php,mongodbphp
[MongoDB] mongodb与php,mongodbphp
windows上安装mongodb的php扩展
下载地址https://s3.amazonaws.com/drivers.mongodb.org/php/index.html
找到对应的php版本的dll文件,下载php_mongo.dll,放到php安装目录下的ext目录中,修改php.ini,添加一项extension=php_mongo.dll,没有找到支持php7的dll
获取MongoClient对象,new出来
获取数据库对象db,通过MongoClient对象的数据库属性,$MongoClient->数据库名
获取集合collection,通过db对象的集合属性,$db->集合名
创建集合,调用db对象的createCollection()方法,
调用collection对象的find()方法,查询数据,$collection->find()
调用collection对象的update ()方法,更新数据,$collection->update($condition,$data);
调用collection对象的insert ()方法,插入数据,$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>?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
