PHP Classes

File: vendor/mongodb/mongodb/docs/reference/method/MongoDBGridFSBucket-getWriteConcern.txt

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/docs/reference/method/MongoDBGridFSBucket-getWriteConcern.txt   Download  
File: vendor/mongodb/mongodb/docs/reference/method/MongoDBGridFSBucket-getWriteConcern.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,363 bytes
 

Contents

Class file image Download
========================================= MongoDB\\GridFS\Bucket::getWriteConcern() ========================================= .. versionadded:: 1.2 .. default-domain:: mongodb .. contents:: On this page :local: :backlinks: none :depth: 1 :class: singlecol Definition ---------- .. phpmethod:: MongoDB\\GridFS\\Bucket::getWriteConcern() Returns the write concern for this GridFS bucket. .. code-block:: php function getWriteConcern(): MongoDB\Driver\WriteConcern Return Values ------------- A :php:`MongoDB\\Driver\\WriteConcern <class.mongodb-driver-writeconcern>` object. Example ------- .. code-block:: php <?php $database = (new MongoDB\Client)->selectDatabase('test'); $bucket = $database->selectGridFSBucket([ 'writeConcern' => new MongoDB\Driver\WriteConcern(1, 0, true), ]); var_dump($bucket->getWriteConcern()); The output would then resemble:: object(MongoDB\Driver\WriteConcern)#3 (2) { ["w"]=> int(1) ["j"]=> bool(true) } See Also -------- - :manual:`Write Concern </reference/read-concern>` in the MongoDB manual - :php:`MongoDB\\Driver\\WriteConcern::isDefault() <mongodb-driver-writeconcern.isdefault>` - :phpmethod:`MongoDB\\Client::getWriteConcern()` - :phpmethod:`MongoDB\\Collection::getWriteConcern()` - :phpmethod:`MongoDB\\Database::getWriteConcern()`