Several problems with the connection of the PHP to MongoDB

Source: Internet
Author: User
Connection method Online There are many, here is not superfluous, the main record of the problems encountered.

You can select a database by using 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 way to get the database, but if the name of the database has special characters , for example, the database name is: Edu-dashi, then this method of writing will be an error, so you must change the wording:

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

Similarly, if the collection name contains special characters , it should be obtained as follows:

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

If you do not add any selection criteria, you can get the data normally, as long as you add any selection criteria, you cannot get the data. This may be the problem, please add on:

Ini_set (' Mongo.long_as_object ', 1);

The above describes the PHP connection MongoDB a few issues, including the aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • 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.