MongoDB\Driver\WriteConcernError::getInfo

(mongodb >=1.0.0)

MongoDB\Driver\WriteConcernError::getInfoReturns additional metadata for the WriteConcernError

Opis

final public MongoDB\Driver\WriteConcernError::getInfo ( void ) : mixed

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns additional metadata for the WriteConcernError, or NULL if no metadata is available.

Błędy/Wyjątki

Przykłady

Przykład #1 MongoDB\Driver\WriteConcernError::getInfo() example

<?php

$manager 
= new MongoDB\Driver\Manager("mongodb://rs1.example.com,rs2.example.com/?replicaSet=myReplicaSet");

$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['x' => 1]);

$writeConcern = new MongoDB\Driver\WriteConcern(21);

try {
    
$manager->executeBulkWrite('db.collection'$bulk$writeConcern);
} catch(
MongoDB\Driver\Exception\BulkWriteException $e) {
    
var_dump($e->getWriteResult()->getWriteConcernError()->getInfo());
}

?>

Powyższy przykład wyświetli coś podobnego do:

object(stdClass)#1 (1) {
  ["wtimeout"]=>
  bool(true)
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top