PHP and MongoDB Connection

2021.01.04 14:55

졸리운_곰 조회 수:114

PHP and MongoDB Connection

xampp windows : mongodb php driver : php_mongodb-1.9.0-7.4-ts-vc15-x64.zip

Introduction

If you’re using PHP to build applications, you may want to interact with a MongoDB database in your code. Fortunately, it’s easy to connect to a MongoDB database from a PHP script with just a bit of setup and configuration. In this article, we’ll show you how to set up a PHP and MongoDB connection so that you can access a MongoDB database in your apps.

Prerequisites

Before attempting to set up a connection between PHP and MongoDB, a few essential prerequisites need to be in place:

  • You’ll need to make sure that either XAMPP or WAMP is already installed and configured on your system.

  • MongoDB must be installed and configured on your machine.

  • You’ll need to have internet access for downloading some required files.

Install MongoDB PHP Driver

In this section, we’ll start the process of setting up a PHP and MongoDB connection by installing the MongoDB PHP driver on our system. To do this, we simply download the needed ‘DLL’ (Dynamic Link Library) file that can be found at this link: MongoDB PHP.

We’ll put this downloaded file in one of our PHP installation directories, which we’ll discuss in the next section.

Configure PHP and MongoDB in Windows

Next, let’s review how to configure PHP in a way that will allow a connection to MongoDB in a Windows environment.

  • First, we open the php.ini file found in the following XAMPP directory:C:\xampp\php

  • Next, we add the following text in the extensions section of the file: extension=php_mongodb.dll

  • Finally, we extract the ‘DLL’ file that we downloaded earlier into the following directory: C:\xampp\php\ext

alt text

Creating a MongoDB Sample Database

Our next step will be to create a sample dataset that we can use in this tutorial.

First, we’ll connect to a database named productdb.

1
use productdb

Then we can perform an insertMany() operation to add some dummy documents that we can use for demo purposes. The operation will create the products collection and add these documents to it at the same time:

1
2
3
4
5
6
7
8
   db.products.insertMany( [
      { item: "keyboard", qty: 20 },
      { item: "mouse", qty: 40 },
      { item: "power supply" , qty: 30 },
      { item: "cpu" , qty: 30 },
      { item: "video card" , qty: 20 },
      { item: "memory module" , qty: 30 }
   ] );

This operation will return a response that looks like the following:

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

1
2
3
4
5
6
7
8
9
10
11
{
        "acknowledged" : true,
        "insertedIds" : [
                ObjectId("5e48b471389f0fd56b8b0554"),
                ObjectId("5e48b471389f0fd56b8b0555"),
                ObjectId("5e48b471389f0fd56b8b0556"),
                ObjectId("5e48b471389f0fd56b8b0557"),
                ObjectId("5e48b471389f0fd56b8b0558"),
                ObjectId("5e48b471389f0fd56b8b0559")
        ]
}

We can verify that the products collection was successfully created using this command: db.products.find().pretty();

We should get results that look like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
        "_id" : ObjectId("5e48b471389f0fd56b8b0554"),
        "item" : "keyboard",
        "qty" : 20
}
{
        "_id" : ObjectId("5e48b471389f0fd56b8b0555"),
        "item" : "mouse",
        "qty" : 40
}
{
        "_id" : ObjectId("5e48b471389f0fd56b8b0556"),
        "item" : "power supply",
        "qty" : 30
}
{
        "_id" : ObjectId("5e48b471389f0fd56b8b0557"),
        "item" : "cpu",
        "qty" : 30
}
{
        "_id" : ObjectId("5e48b471389f0fd56b8b0558"),
        "item" : "video card",
        "qty" : 20
}
{
        "_id" : ObjectId("5e48b471389f0fd56b8b0559"),
        "item" : "memory module",
        "qty" : 30
}

Connecting to MongoDB Database

In this section, we’ll create a simple PHP script that will connect to our productdb database.

Let’s start by creating a new directory named ‘phpmongo’ in the htdocs directory. We can then create a new PHP file called ‘test.php’ and add the following code to it:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

    $mng = new MongoDB\Driver\Manager("mongodb://localhost:27017");
    $qry = new MongoDB\Driver\Query([]);
     
    $rows = $mng->executeQuery("productdb.products", $qry);
   
    foreach ($rows as $row) {
   
         foreach ($rows as $row) {
        echo nl2br("$row->item : $row->qty\n");
    }

    }
   
?>

The code shown above will read data from the ‘products’ collection that exists within the ‘productdb’ database. Let’s take a closer look at what’s happening in this script:

  • We use $qry = new MongoDB\Driver\Query([]); to create a MongoDB query object with an empty array. This tells MongoDB to read all possible data within the target collection.

  • We then execute the query against the specified collection name using the following line of code: $rows = $mng->executeQuery("productdb.products", $qry);

  • Finally, we iterate over all matched documents and print it out on the page.

The result should look like the following:

Conclusion

When you’re writing PHP code and need to interact with a database, MongoDB is a natural choice. Fortunately, it only takes a few simple steps to create a connection between PHP and MongoDB. In this article, we walked you through the complete process of creating a PHP and MongoDB connection, and we provided a code example that includes a typical MongoDB query. With these instructions and code examples to guide you, you’ll be able to write PHP code that can query your own MongoDB database.

 

[출처] https://kb.objectrocket.com/mongo-db/php-and-mongodb-connection-1295

 

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
158 php에서 Access (엑세스) mdb (accdb) 파일에 연결 file 졸리운_곰 2016.08.11 4978
157 CRUD Operation using PHP & Mongodb file 졸리운_곰 2021.01.04 4813
156 Building a Simple Blog App with MongoDB and PHP file 졸리운_곰 2020.09.13 3124
155 cake php 사용법 file 졸리운_곰 2017.01.15 2472
154 PHP에서 Python을 호출한 후, 리턴값 받기 졸리운_곰 2014.07.11 1889
153 wp 워드프레스 플러그인 만들기 file 졸리운_곰 2016.08.08 1791
152 Building a RESTful API Using ReactPHP and MySQL file 졸리운_곰 2020.07.01 1774
151 Creating a Website Design Templating System Using PHP 졸리운_곰 2021.02.13 1435
150 [php] simple Rest API : Build a Simple REST API in PHP file 졸리운_곰 2021.05.31 992
149 [php] [xampp] xampp php 버전 폴더 (디렉토리) 별 설정 : Running multiple PHP versions on XAMPP file 졸리운_곰 2024.03.21 976
148 데이터로서의 코드: PHP의 Reflection(1) 가을의 곰을... 2013.12.22 975
147 SQLite 소개 졸리운_곰 2016.08.11 912
146 SQLite 와 php 의 연동 졸리운_곰 2016.08.11 861
145 How to Insert JSON Data into MySQL using PHP file 졸리운_곰 2015.12.04 860
144 PHP 로 guid(uuid) 만들기 졸리운_곰 2019.02.27 768
143 [PHP] JWT 구현하기 졸리운_곰 2022.07.15 662
142 PHP를 이용한 웹 서비스 개발(1) 가을의 곰을... 2013.12.11 628
141 PHP 와 MYSQL 연동 졸리운_곰 2015.08.11 598
140 WordPress Development using PhpStorm 졸리운_곰 2017.05.05 502
139 PHP UTF-8 문자열 길이 비교하여 자르는 함수 <strcut_utf8> 졸리운_곰 2014.12.29 453
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED