PHP Operation MongoDB Basic Tutorial (connect, add, modify, delete, query) _php instance

Source: Internet
Author: User
Copy CodeThe code is as follows:
Connection localhost:27017
$conn = new Mongo ();

Connecting the remote host default port
$conn = new Mongo (' test.com ');

Connecting remote host 22011 ports
$conn = new Mongo (' test.com:22011 ');

MongoDB has user name password
$conn = new Mongo ("Mongodb://${username}:${password} @localhost")

MongoDB has a user name password and specifies a 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;
Make result set (table name: Users)
$collection = $db->users;
New
$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 a
$user = $collection->findone (Array (' name ' = ' Caleng '), array (' email '));
Var_dump ($user);
Close the database
$conn->close ();

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.