Several problems of PHP connection MongoDB

Source: Internet
Author: User
Tags mongodb

Connection method There are many online, this is not superfluous, the main record of the problems encountered.


When you select a database, you can use the following statement:

$mongo = new MONGO ("Mongodb://127.0.0.1:27017/admin:admin");

$db = $mongo->dbname.

This time there is a problem, in general, this type of writing can get the database, but if the name of the database has special characters, for example, the database name is: Edu-dashi, then write this method will be an error, so you must change the way:

$db = $mongo->selectdb ("Edu-dashi");


Similarly, if the collection name contains special characters, you should follow the following syntax:

$collection = $db->selectcollection ("collection");



If you do not add any selection criteria, you can get the data normally, and you cannot get the data as long as you add any selection criteria. May be the problem, please add on: Ini_set (' Mongo.long_as_object ', 1);

Source: http://blog.csdn.net/zzm628/article/details/48655631

Related Article

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.