For AI agents: a documentation index is available at https://www.mongodb.com/ja-jp/docs/llms.txt — markdown versions of all pages are available by appending .md to any URL path.
Make the MongoDB docs better! We value your opinion. Share your feedback for a chance to win $100.
MongoDB Branding Shape
Click here >
Docs Menu

MongoDB\Client::getReadConcern()

New in version 1.2. :

MongoDB\Client::getReadConcern()

Returns the read concern for this client.

function getReadConcern(): MongoDB\Driver\ReadConcern

A MongoDB\Driver\ReadConcern object.

<?php
$client = new MongoDB\Client('mongodb://127.0.0.1/', [
'readConcernLevel' => 'majority',
]);
var_dump($client->getReadConcern());

The output would then resemble:

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