PHP Classes

File: vendor/mongodb/mongodb/docs/reference/method/MongoDBCollection-getReadConcern.txt

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/docs/reference/method/MongoDBCollection-getReadConcern.txt   Download  
File: vendor/mongodb/mongodb/docs/reference/method/MongoDBCollection-getReadConcern.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: MongoDB Queue PHP Query Execute
Query and execute multiple queries using MongoDB
Author: By
Last change:
Date: 4 years ago
Size: 1,320 bytes
 

Contents

Class file image Download
===================================== MongoDB\\Collection::getReadConcern() ===================================== .. versionadded:: 1.2 .. default-domain:: mongodb .. contents:: On this page :local: :backlinks: none :depth: 1 :class: singlecol Definition ---------- .. phpmethod:: MongoDB\\Collection::getReadConcern() Returns the read concern for this collection. .. code-block:: php function getReadConcern(): MongoDB\Driver\ReadConcern Return Values ------------- A :php:`MongoDB\\Driver\\ReadConcern <class.mongodb-driver-readconcern>` object. Example ------- .. code-block:: php <?php $collection = (new MongoDB\Client)->selectCollection('test', 'users', [ 'readConcern' => new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::MAJORITY), ]); var_dump($collection->getReadConcern()); The output would then resemble:: object(MongoDB\Driver\ReadConcern)#5 (1) { ["level"]=> string(8) "majority" } See Also -------- - :manual:`Read Concern </reference/read-concern>` in the MongoDB manual - :php:`MongoDB\\Driver\\ReadConcern::isDefault() <mongodb-driver-readconcern.isdefault>` - :phpmethod:`MongoDB\\Client::getReadConcern()` - :phpmethod:`MongoDB\\Database::getReadConcern()` - :phpmethod:`MongoDB\\GridFS\\Bucket::getReadConcern()`