tp5(thinkPHP5)操作mongoDB数据库的方法

时间:2021-10-31 04:15:30

本文实例讲述了tp5(thinkPHP5)操作mongoDB数据库的方法。分享给大家供大家参考,具体如下:

1.通过composer安装

  1. composer require mongodb/mongodb 

tp5(thinkPHP5)操作mongoDB数据库的方法

2.使用

  1. <?php 
  2. /** 
  3.  * @author: jim 
  4.  * @date: 2017/11/17 
  5.  */ 
  6. namespace appindexcontroller; 
  7. use thinkController; 
  8. use MongoDBDriverManager; 
  9. use MongoDBCollection; 
  10. class MongoTest extends Controller 
  11.   protected $mongoManager; 
  12.   protected $mongoCollection; 
  13.   public function __construct() 
  14.   { 
  15.     $this->mongoManager = new Manager($this->getUri()); 
  16.     $this->mongoCollection = new Collection($this->mongoManager, "mldn","dept"); 
  17.   } 
  18.   public function test() { 
  19.     // 读取一条数据 
  20.     $data = $this->mongoCollection->findOne(); 
  21.     print_r($data); 
  22.   } 
  23.   protected function getUri() 
  24.   { 
  25.     return getenv('MONGODB_URI') ?: 'mongodb://127.0.0.1:27017'
  26.   } 

 

tp5(thinkPHP5)操作mongoDB数据库的方法

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。