MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Classe 'MongoDB\Client' non trovata, estensione mongodb installata

Se stai utilizzando l'ultima estensione MongoDB di PHP, MongoDB\Driver\Manager è il punto di ingresso principale dell'estensione.

Ecco il codice di esempio per recuperare i dati utilizzando l'ultima estensione.

Supponiamo che tu abbia testColl raccolta in testDb . Puoi recuperare i dati utilizzando MongoDB\Driver\Query classe dell'interno.

// Manager Class
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");

// Query Class
$query = new MongoDB\Driver\Query(array('age' => 30));

// Output of the executeQuery will be object of MongoDB\Driver\Cursor class
$cursor = $manager->executeQuery('testDb.testColl', $query);

// Convert cursor to Array and print result
print_r($cursor->toArray());

Uscita:

Array
(
    [0] => stdClass Object
        (
            [_id] => MongoDB\BSON\ObjectID Object
                (
                    [oid] => 5848f1394cea9483b430d5d2
                )

            [name] => XXXX
            [age] => 30
        )

)