array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'mongodb-driver-writeconcernerror.getcode.php', 1 => 'MongoDB\\Driver\\WriteConcernError::getCode', 2 => 'Returns the WriteConcernError\'s error code', ), 'up' => array ( 0 => 'class.mongodb-driver-writeconcernerror.php', 1 => 'MongoDB\\Driver\\WriteConcernError', ), 'prev' => array ( 0 => 'class.mongodb-driver-writeconcernerror.php', 1 => 'MongoDB\\Driver\\WriteConcernError', ), 'next' => array ( 0 => 'mongodb-driver-writeconcernerror.getinfo.php', 1 => 'MongoDB\\Driver\\WriteConcernError::getInfo', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/mongodb/driver/writeconcernerror/getcode.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

MongoDB\Driver\WriteConcernError::getCode

(mongodb >=1.0.0)

MongoDB\Driver\WriteConcernError::getCodeReturns the WriteConcernError's error code

说明

final public MongoDB\Driver\WriteConcernError::getCode(): int

参数

此函数没有参数。

返回值

Returns the WriteConcernError's error code.

错误/异常

示例

示例 #1 MongoDB\Driver\WriteConcernError::getCode() 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(2, 1);

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

?>

以上示例的输出类似于:

int(64)

参见