|
MongoDB\Driver\Manager::getWriteConcernReturn the WriteConcern for the Manager Description
final public MongoDB\Driver\WriteConcern MongoDB\Driver\Manager::getWriteConcern()
Returns the MongoDB\Driver\WriteConcern for the Manager, which is derived from its URI options. This is the default write concern for writes and commands executed on the Manager. ParametersThis function has no parameters. Return ValuesThe MongoDB\Driver\WriteConcern for the Manager. Errors/Exceptions
ExamplesExample #1 MongoDB\Driver\Manager::getWriteConcern example
The above example will output something similar to: object(MongoDB\Driver\WriteConcern)#2 (0) { } object(MongoDB\Driver\WriteConcern)#1 (2) { ["w"]=> string(8) "majority" ["wtimeout"]=> int(2000) } See Also
|