Home  >  Article  >  Backend Development  >  Detailed explanation of how to operate mongoDB database with tp5 (thinkPHP5)

Detailed explanation of how to operate mongoDB database with tp5 (thinkPHP5)

jacklove
jackloveOriginal
2018-06-29 17:56:213709browse

This article mainly introduces how tp5 (thinkPHP5) operates the mongoDB database. It briefly analyzes the mongoDB database and thinkPHP5 connection and the basic operating skills of querying the MongoDB database in the form of examples. Friends who need it can refer to it

The example in this article describes how tp5 (thinkPHP5) operates the mongoDB database. Share it with everyone for your reference, the details are as follows:

1. Install through composer

composer require mongodb/mongodb

2. Use

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';
  }
}

Articles you may be interested in:

Explanation of the solution to PHP Class SoapClient not found

Solution to PHP Class SoapClient not found

Lumen timezone time zone setting method

The above is the detailed content of Detailed explanation of how to operate mongoDB database with tp5 (thinkPHP5). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn