Việc sử dụng api người quản lý của bạn không chính xác.
$m = new MongoDB\Driver\Manager("mongodb://localhost:27017");
$filter= array('email' => $email);
$options = array(
'limit' => 1
);
$query = new MongoDB\Driver\Query($filter, $options);
$rows = $m->executeQuery('clients.suscriptions', $query);
Ngoài ra, bạn nên cài đặt thư viện thông qua trình soạn nhạc cung cấp cú pháp tương tự như api cũ.
require 'vendor/autoload.php';
$m= new MongoDB\Client("mongodb://127.0.0.1/");
$db = $m->clients;
$collection = $db->suscriptions;
$query = array('email' => $email);
$document = $collection->findOne($query);
https://docs.mongodb.com/ php-library / master / tutorial / crud / # find-one-document