tp5(thinkPHP5)操作mongoDB数据库的方法
本文实例讲述了tp5(thinkPHP5)操作mongoDB数据库的方法。分享给大家供大家参考,具体如下:
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'; } }
更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《ThinkPHP入门教程》、《thinkPHP模板操作技巧总结》、《ThinkPHP常用方法总结》、《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《Zend FrameWork框架入门教程》及《PHP模板技术总结》。
希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。
您可能感兴趣的文章:
- thinkPHP5实现的查询数据库并返回json数据实例
- thinkPHP5实现数据库添加内容的方法
- thinkPHP5框架数据库连贯操作之cache()用法分析
- Thinkphp使用mongodb数据库实现多条件查询方法
- ThinkPHP实现多数据库连接的解决方法
- ThinkPHP 连接Oracle数据库的详细教程[全]
- ThinkPHP连接数据库的方式汇总
- thinkphp3.2.3版本的数据库增删改查实现代码
- thinkphp3查询mssql数据库乱码解决方法分享
- thinkPHP连接sqlite3数据库的实现方法(附Thinkphp代码生成器下载)
赞 (0)