| 
 | MongoDB\Driver\Exception\BulkWriteCommandException::getErrorReplyReturns any top-level command error 説明
   final public MongoDB\BSON\Documentnull MongoDB\Driver\Exception\BulkWriteCommandException::getErrorReply() 
 パラメータこの関数にはパラメータはありません。 戻り値
   Returns any top-level error that occurred when attempting to communicate
   with the server or execute the bulk write. This value may be  例例1 MongoDB\Driver\Exception\BulkWriteCommandException::getErrorReply example 上の例の出力は、 たとえば以下のようになります。 
object(stdClass)#12 (6) {
  ["ok"]=>
  float(0)
  ["errmsg"]=>
  string(43) "Failing command via 'failCommand' failpoint"
  ["code"]=>
  int(8)
  ["codeName"]=>
  string(12) "UnknownError"
  ["$clusterTime"]=>
  object(stdClass)#10 (2) {
    ["clusterTime"]=>
    object(MongoDB\BSON\Timestamp)#6 (2) {
      ["increment"]=>
      string(1) "7"
      ["timestamp"]=>
      string(10) "1744319389"
    }
    ["signature"]=>
    object(stdClass)#9 (2) {
      ["hash"]=>
      object(MongoDB\BSON\Binary)#7 (2) {
        ["data"]=>
        string(20) ""
        ["type"]=>
        int(0)
      }
      ["keyId"]=>
      object(MongoDB\BSON\Int64)#8 (1) {
        ["integer"]=>
        string(1) "0"
      }
    }
  }
  ["operationTime"]=>
  object(MongoDB\BSON\Timestamp)#11 (2) {
    ["increment"]=>
    string(1) "7"
    ["timestamp"]=>
    string(10) "1744319389"
  }
}
参考
 |