US-1234
US-1234

Reputation: 1529

Difference between mongodb driver for PHP and mongodb database driver

When I'm trying to install new dll for PHP 7 version, i am confused with the two links,

https://pecl.php.net/package/mongodb

https://pecl.php.net/package/mongo

Please can anyone explain the difference between these two links?

Upvotes: 1

Views: 688

Answers (1)

StR
StR

Reputation: 561

Mongo (whithoud the 'db') is the old driver. MongoDB is the new driver. You can read about the new driver at https://derickrethans.nl/new-drivers.html

The new driver is to be used with the library https://github.com/mongodb/mongo-php-library

Upvotes: 1

Related Questions