If you would prefer to have the results returned as an associative array, after executing your query you could call $cursor->setTypeMap like this:
$cursor->setTypeMap(['root' => 'array', 'document' => 'array', 'array' => 'array']);
(mongodb >=1.0.0)
MongoDB\Driver\Cursor::setTypeMap — Устанавливает карту типа для десериализации BSON
Устанавливает конфигурацию карты типов, которая будет использоваться при десериализации результатов BSON в значения PHP.
typeMap
(array)Функция не возвращает значения после выполнения.
При итерации по курсору может выбрасываться следующие исключения из-за неправильной конфигурации карты типов:
Пример #1 Пример использования MongoDB\Driver\Cursor::setTypeMap()
<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
$bulk = new MongoDB\Driver\BulkWrite;
$id = $bulk->insert(['x' => 1]);
$manager->executeBulkWrite('db.collection', $bulk);
$query = new MongoDB\Driver\Query(['_id' => $id]);
$cursor = $manager->executeQuery('db.collection', $query);
$cursor->setTypeMap(['root' => 'array']);
foreach ($cursor as $document) {
var_dump($document);
}
?>
Вывод приведённого примера будет похож на:
array(2) { ["_id"]=> object(MongoDB\BSON\ObjectId)#6 (1) { ["oid"]=> string(24) "56424fb76118fd3267180741" } ["x"]=> int(1) }