Fatal error: Class 'MongoDB\Driver\Manager' not found

后端 未结 7 813
攒了一身酷
攒了一身酷 2020-12-01 18:52

I want to use the MongoDB Driver, but it throw me an error, when i use it:

$mongo = new MongoDB\\Driver\\Manager(\"mongodb://localhost:27017\");
7条回答
  •  有刺的猬
    2020-12-01 19:32

    If you get this error, even after you installed the Mongodb driver for php, just install mongodb using composer.

    composer require mongodb/mongodb
    

    After that this will solve your problem.

提交回复
热议问题