1024programmer Java Basic tutorial on operating MongoDB in PHP (connection, addition, modification, deletion, query)_PHP

Basic tutorial on operating MongoDB in PHP (connection, addition, modification, deletion, query)_PHP

MongoDB

The code is as follows:
//Connect localhost:27017
$cOnn= new Mongo();


//Default port for connecting to the remote host
$cOnn= new Mongo(‘test.com’);


//Connect to the remote host port 22011
$cOnn= new Mongo(‘test.com:22011’);


//MongoDB has a username and password
$cOnn= new Mongo(“mongodb://${username}:${password}@localhost”)


//MongoDB has a username and password and specifies the database blog
$cOnn= new Mongo(“mongodb://${username}:${password}@localhost/blog”);


//Multiple servers
$cOnn= new Mongo(“mongodb://localhost:27017,localhost:27018”);
//Select database blog
$db = $conn-> blog;
//Specify the result set (table name: users)
$collection = $db->users;
//Newly added
$user = array(‘name’ => ‘caleng ‘, ’email’ => ‘admin#admin.com’);
$collection->insert($user);
//Modify
$newdata = array(‘$set’ => array (“email” => “test@test.com”));
$collection->update(array(“name” => “caleng”), $newdata);
//Delete
$collection->remove(array(‘name’=>’caleng’), array(“justOne” => true));
//Find
$cursor = $collection->find();
var_dump($cursor);
//Find one
$user = $collection->findOne(array(‘name’ => ‘caleng’), array(’email’));
var_dump($user);
//Close the database
$conn->close();

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/basic-tutorial-on-operating-mongodb-in-php-connection-addition-modification-deletion-query_php-2/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索