這篇文章主要介紹了tp5(thinkPHP5)操作mongoDB資料庫的方法,結合實例形式簡單分析了mongoDB資料庫及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'; } }
您可能感興趣的文章:
PHP Class SoapClient not found解決方法的講解PHP Class SoapClient not found的解決方法#Lumen timezone 時區設定方法以上是tp5(thinkPHP5)操作mongoDB資料庫的方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!