php8.5
Home/ Manual/ exception / writeexception/ MongoDB\Driver\Exception\WriteException::getWriteResult

MongoDB\Driver\Exception\WriteException::getWriteResult

PHP function Deprecated as of mongodb 1.20.0 Edit on GitHub ✎

(mongodb >= 1.0.0)

Returns the WriteResult for the failed write operation

Description

MongoDB\Driver\Exception\WriteException::getWriteResult(): MongoDB\Driver\WriteResult

Returns the MongoDB\Driver\WriteResult for the failed write operation. The MongoDB\Driver\WriteResult::getWriteErrors() and MongoDB\Driver\WriteResult::getWriteConcernError() methods may be used to get more details about the failure.

Parameters Parameters

Return Values

The MongoDB\Driver\WriteResult for the failed write operation.

Examples

MongoDB\Driver\Exception\WriteException::getWriteResult() example

php
<?php

$manager = new MongoDB\Driver\Manager('mongodb://localhost');
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['_id' => 1]);
$bulk->insert(['_id' => 1]);

try {
    $manager->executeBulkWrite('db.collection', $bulk);
} catch (MongoDB\Driver\Exception\WriteException $e) {
    $writeResult = $e->getWriteResult();

    if ($writeConcernError = $writeResult->getWriteConcernError()) {
        var_dump($writeConcernError);
    }

    if ($writeErrors = $writeResult->getWriteErrors()) {
        var_dump($writeErrors);
    }
}

?>

The above example will output something similar to:

output
array(1) {
  [0]=>
  object(MongoDB\Driver\WriteError)#5 (4) {
    ["message"]=>
    string(70) "E11000 duplicate key error index: db.collection.$_id_ dup key: { : 1 }"
    ["code"]=>
    int(11000)
    ["index"]=>
    int(1)
    ["info"]=>
    NULL
  }
}

See Also

Source: reference/mongodb/mongodb/driver/exception/writeexception/getwriteresult.xml · from the official PHP manual (php/doc-en)