Home >Database >Mysql Tutorial > Mongodb之(小试牛刀)

Mongodb之(小试牛刀)

WBOY
WBOYOriginal
2016-06-07 17:56:47990browse

今天外面刮着呼呼的大风,能在一个温暖的小屋写着博客也是北漂的一种幸福。好了废话不多说,今天主要说一下php连接、操作mongodb,如果你没有看上两期的内容,不知道如何安装php对mongodb的扩展的话请您返回去看《Mongodb之(初识如故)》和《Mongodb之(初出茅

今天外面刮着呼呼的大风,能在一个温暖的小屋写着博客也是北漂的一种幸福。好了废话不多说,今天主要说一下php连接、操作mongodb,美国服务器,香港服务器租用,如果你没有看上两期的内容,不知道如何安装php对mongodb的扩展的话请您返回去看《Mongodb之(初识如故)》和《Mongodb之(初出茅庐)》   。

php 连接mongodb

try {   $mongo = new Mongo("mongodb://username:password@127.0.0.1:27017/db1"); }catch(MongoConnectionException $e) { print $e->getMessage(); exit; } ,香港虚拟主机

Statement:
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
Previous article: MongoDB学习Next article:MongoDB+Hadoop运行环境搭建