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

php中世界最好的语言
Release: 2023-03-26 22:14:01
Original
5760 people have browsed it

This time I will bring you a detailed explanation of the steps to operate the mongoDB database with tp5 (thinkPHP5). What are the precautions for operating the mongoDB database with tp5 (thinkPHP5)? The following is a practical case, let's take a look.

1. Install through composer

composer require mongodb/mongodb
Copy after login

2. Use

<?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';
  }
}
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the algorithm steps for php to realize the counting of the number of 1's in the binary

CI framework (CodeIgniter) operation redis steps Analysis

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template