<?php
require_once 'vendor/autoload.php';
$con = new MongoDB\Client("mongodb://user_name:password@cluster0-shard-00-00.2twek.mongodb.net:27017,cluster0-shard-00-01.2twek.mongodb.net:27017,cluster0-shard-00-02.2twek.mongodb.net:27017/test?ssl=true&replicaSet=atlas-6wx29r-shard-0&authSource=admin&w=majority");
$db = $con->selectDatabase('test');
$col = $db->selectCollection('user');
$sql = $col->find();
foreach($sql as $cols)
{
var_dump($cols);
}
?>
But it shows this error. Pls, help me to solve it.