MongoDB\Driver\Exception\WriteException::getWriteResult

(mongodb >= 1.0.0)

MongoDB\Driver\Exception\WriteException::getWriteResultReturns the WriteResult for the failed write operation

说明

final public MongoDB\Driver\Exception\WriteException::getWriteResult ( void ) : 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.

参数

此函数没有参数。

返回值

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

范例

Example #1 MongoDB\Driver\Exception\WriteException::getWriteResult() example

<?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);
    }
}

?>

以上例程的输出类似于:

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
  }
}

参见

相关文章
php mongodb driver exception the mongodb driver exception writeexception classphp mongodb driver monitoring commandfailedevent returns the exception associated with the failed commandphp mongodb driver monitoring commandfailedevent returns the command s operation idphp mongodb driver monitoring commandstartedevent returns the command s operation idphp mongodb driver monitoring commandstartedevent returns the command s request idphp mongodb driver monitoring commandsucceededevent returns the command s operation idphp mongodb driver exception runtimeexception returns whether an error label is associated with an exceptionphp mongodb driver writeconcernerror returns the writeconcernerror s error messagephp mongodb driver writeerror returns the index of the write operation corresponding to this writeerrorphp mongodb driver exception writeexception returns the writeresult for the failed write operationphp mongodb driver writeresult returns the number of documents deletedphp mongodb driver writeresult returns the number of documents inserted excluding upserts php mongodb driver writeresult returns the number of documents selected for updatephp mongodb driver writeresult returns the number of existing documents updatedphp mongodb driver writeresult returns the server associated with this write resultphp mongodb driver writeresult returns the number of documents inserted by an upsertphp mongodb driver writeresult returns an array of identifiers for upserted documentsphp mongodb driver writeresult returns any write concern error that occurredphp mongodb driver writeresult returns any write errors that occurredphp mongodb driver writeresult returns whether the write was acknowledged
关注编程学问公众号