|
MongoDB\Driver\WriteResult::getWriteConcernErrorReturns any write concern error that occurred Description
final public MongoDB\Driver\WriteConcernErrornull MongoDB\Driver\WriteResult::getWriteConcernError()
ParametersThis function has no parameters. Return Values
Returns a MongoDB\Driver\WriteConcernError if a write
concern error was encountered during the write operation, and Errors/Exceptions
ExamplesExample #1 MongoDB\Driver\WriteResult::getWriteConcernError example
The above example will output something similar to: object(MongoDB\Driver\WriteConcernError)#6 (3) { ["message"]=> string(33) "waiting for replication timed out" ["code"]=> int(64) ["info"]=> object(stdClass)#7 (1) { ["wtimeout"]=> bool(true) } } See Also
|