Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Repository to help getting started with MongoDB PHP driver connecting to MongoDB Atlas

License

Notifications You must be signed in to change notification settings

mongodb-developer/get-started-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notice: Repository Deprecation

This repository is deprecated and no longer actively maintained. It contains outdated code examples or practices that do not align with current MongoDB best practices. While the repository remains accessible for reference purposes, we strongly discourage its use in production environments. Users should be aware that this repository will not receive any further updates, bug fixes, or security patches. This code may expose you to security vulnerabilities, compatibility issues with current MongoDB versions, and potential performance problems. Any implementation based on this repository is at the user's own risk. For up-to-date resources, please refer to the MongoDB Developer Center.

Get-Started PHP

Repository to help getting started with MongoDB PHP driver connecting to MongoDB Atlas.

Information

This Get-Started project uses MongoDB PHP driver version 1.9.1 by default. Although you can change the driver version, the provided code example was only tested against the default version of MongoDB driver. There is no guarantee that the code sample will work for all possible versions of the driver.

Please note that the MongoDB PHP driver consists of two components, the MongoDB extension and library.

Pre-requisites

Docker

Have Docker running on your machine. You can download and install from: https://docs.docker.com/install/

MongoDB Atlas

In order to execute the code example, you need to specify MONGODB_URI environment variable to connect to a MongoDB cluster. If you don't have an existing cluster, you can create one by signing up MongoDB Atlas Free-tier M0.

Execution Steps

Execute the helper shell script followed by the MongoDB URI that you would like to connect to.

./get-started.sh "mongodb+srv://usr:pwd@example.mongodb.net/dbname?retryWrites=true"

Execute commands within the Docker environment

You can invoke a terminal session within the Docker environment using the following command. From the top level directory, execute:

docker run -it -v "$(pwd):/workspace/php" -w /workspace/php ghcr.io/mongodb-developer/get-started-php:0.1 "sh"

Tutorials

About

This project is part of the MongoDB Get-Started code examples. Please see get-started-readme for more information.

Disclaimer

This software is not supported by MongoDB, Inc under any of their commercial support subscriptions or otherwise. Any usage is at your own risk.