MongoDB\Driver\WriteConcernError::getCode

(mongodb >=1.0.0)

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

说锟斤拷

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

锟斤拷锟斤拷

锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷

锟斤拷锟斤拷值

Returns the WriteConcernError's error code.

锟斤拷锟斤拷锟届常

锟斤拷锟斤拷

Example #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(21);

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

?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

int(64)