tp5 operates mongoDB database instance

小云云
Release: 2023-03-19 15:40:01
Original
4254 people have browsed it

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

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(&#39;MONGODB_URI&#39;) ?: &#39;mongodb://127.0.0.1:27017&#39;;
  }
}
Copy after login

Related recommendations:

PHP Operation MongoDB Database_PHP Tutorial

node.js operation mongoDB database example sharing_node.js

node.js operation MongoDB code case sharing


The above is the detailed content of tp5 operates mongoDB database instance. 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