时间:2021-07-01 10:21:17 帮助过:4人阅读
1.通过composer安装
composer require mongodb/mongodb

2.使用
<?php
/**
* @author: jim
* @date: 2017/11/17
*/
namespace app\index\controller;
use think\Controller;
use MongoDB\Driver\Manager;
use MongoDB\Collection;
class MongoTest extends Controller
{
protected $mongoManager;
protected $mongoCollection;
public function __construct()
{
$this->mongoManager = new Manager($this->getUri());
$this->mongoCollection = new Collection($this->mongoManager, "mldn","dept");
}
public function test() {
// 读取一条数据
$data = $this->mongoCollection->findOne();
print_r($data);
}
protected function getUri()
{
return getenv('MONGODB_URI') ?: 'mongodb://127.0.0.1:27017';
}
}
相关推荐:
PHP操作MongoDB数据库_PHP教程
node.js操作mongoDB数据库示例分享_node.js
node.js操作MongoDB的代码案例分享
以上就是tp5操作mongoDB数据库实例的详细内容,更多请关注Gxl网其它相关文章!