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

WBOY
Release: 2016-07-13 10:35:12
Original
742 people have browsed it

Copy code 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 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();


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/745824.htmlTechArticleCopy the code as follows: //Connect to localhost:27017 $conn = new Mongo(); //Connect to the remote host Default port $conn = new Mongo('test.com'); //Connect to remote host 22011 port $conn = new...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template