array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'mongodb-driver-bulkwriteexception.getwriteresult.php', 1 => 'MongoDB\\Driver\\Exception\\BulkWriteException::getWriteResult', 2 => 'Returns the WriteResult for the failed write operation', ), 'up' => array ( 0 => 'class.mongodb-driver-exception-bulkwriteexception.php', 1 => 'MongoDB\\Driver\\Exception\\BulkWriteException', ), 'prev' => array ( 0 => 'class.mongodb-driver-exception-bulkwriteexception.php', 1 => 'MongoDB\\Driver\\Exception\\BulkWriteException', ), 'next' => array ( 0 => 'class.mongodb-driver-exception-bulkwritecommandexception.php', 1 => 'MongoDB\\Driver\\Exception\\BulkWriteCommandException', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/mongodb/driver/exception/bulkwriteexception/getwriteresult.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(mongodb >= 1.0.0)
MongoDB\Driver\Exception\BulkWriteException::getWriteResult — Returns the WriteResult for the failed write operation
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.
Приклад #1 MongoDB\Driver\Exception\BulkWriteException::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\BulkWriteException $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 } }