For AI agents: a documentation index is available at https://www.mongodb.com/es/docs/llms.txt — markdown versions of all pages are available by appending .md to any URL path.
Docs Menu

MongoDB\Collection::getReadConcern()

New in version 1.2. :

MongoDB\Collection::getReadConcern()

Returns the read concern for this collection.

function getReadConcern(): MongoDB\Driver\ReadConcern

A MongoDB\Driver\ReadConcern object.

<?php
$collection = (new MongoDB\Client)->getCollection('test', 'users', [
'readConcern' => new MongoDB\Driver\ReadConcern('majority'),
]);
var_dump($collection->getReadConcern());

The output would then resemble:

object(MongoDB\Driver\ReadConcern)#5 (1) {
["level"]=>
string(8) "majority"
}