我启用了“ Mongo”(它出现在Phpinfo(),版本1.6.16中),我从MongoDB沙箱数据库中复制了以下代码:
$client = new MongoDB\Client(
'mongodb+srv://***:<password>@***-***.mongodb.net/test?retryWrites=true&w=majority');
$db = $client->test;
但是即使我在Phpinfo()中看到Mongo扩展名,我仍然收到此错误消息:
Fatal error: Class 'MongoDB\Driver\Manager' not found in C:....
可能是什么原因造成的?