MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Probleme mit der php7-Mongo-Abfrage findOne

Ihre Nutzung der Manager-API ist falsch.

$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);

Alternativ sollten Sie die Bibliothek über composer die eine ähnliche Syntax wie die alte API bietet.

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