摘要: 原文链接: http://www.zhaokeli.com/article/8574.html MongoDb原生操作 Mongodb连接 PHP7 连接 MongoDB 语法如下: 复制代码 $manager = new MongoDB\Driver\Manager("mongodb://loca 阅读全文
posted @ 2019-07-04 19:37 浮尘微光 阅读(6655) 评论(0) 推荐(0)
摘要: 参考:https://www.php.net/manual/zh/class.mongodb-driver-manager.php 参考:https://www.zhaokeli.com/article/8574.html Driver\Manager 入口文件,一般都要先实例化该类Driver\B 阅读全文
posted @ 2019-07-04 14:36 浮尘微光 阅读(2209) 评论(0) 推荐(0)
摘要: 数据库内容 查看所有数据库show dbs 删除数据库db.dropDatebase() 集合内容 创建集合db.createCollection() 查看所有集合\表show collectionsshow tables 选定某一集合use db_name 查看集合的信息db.stats() 删除 阅读全文
posted @ 2019-07-04 14:32 浮尘微光 阅读(2707) 评论(0) 推荐(0)