我无法使用php客户端连接云mongo集群.. 我正在使用此客户端https://packagist.org/packages/mongodb/mongodb
下面是我正在使用的连接代码
use MongoDB\Client as mongoClient;
$client = new mongoClient('mongodb+srv://xyz_username:abc_password@XAYBZC_cluster_dummy_name.mongodb.net/database_name?retryWrites=true&w=majority');
$db = $client->$database;
$collection = $db->selectCollection("table_name");