MongoDB\Driver\WriteConcern::bsonSerialize

(mongodb >=1.2.0)

MongoDB\Driver\WriteConcern::bsonSerializeReturns an object for BSON serialization

说明

final public MongoDB\Driver\WriteConcern::bsonSerialize ( void ) : object

参数

此函数没有参数。

返回值

Returns an object for serializing the WriteConcern as BSON.

错误/异常

范例

Example #1 MongoDB\Driver\WriteConcern::bsonSerialize() with majority write concern

<?php

$wc 
= new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY);
var_dump($wc->bsonSerialize());

echo 
"\n"MongoDB\BSON\toJSON(MongoDB\BSON\fromPHP($wc));

?>

以上例程的输出类似于:

object(stdClass)#2 (1) {
  ["w"]=>
  string(8) "majority"
}

{ "w" : "majority" }

Example #2 MongoDB\Driver\WriteConcern::bsonSerialize() with wtimeout and journal

<?php

$wc 
= new MongoDB\Driver\WriteConcern(21000true);
var_dump($wc->bsonSerialize());

echo 
"\n"MongoDB\BSON\toJSON(MongoDB\BSON\fromPHP($wc));

?>

以上例程的输出类似于:

object(stdClass)#2 (3) {
  ["w"]=>
  int(2)
  ["j"]=>
  bool(true)
  ["wtimeout"]=>
  int(1000)
}

{ "w" : 2, "j" : true, "wtimeout" : 1000 }

参见

相关文章
php mongodb bson type classes and serialization functionsphp mongodb bson dbpointer returns an empty stringphp mongodb bson javascript returns the javascript s scope documentphp mongodb bson javascript returns a representation that can be converted to jsonphp mongodb bson objectid returns the timestamp component of this objectidphp mongodb bson regexinterface returns the regexinterface s patternphp mongodb bson regexinterface returns the string representation of this regexinterfacephp mongodb bson timestampinterface returns the timestamp component of this timestampinterfacephp mongodb bson timestampinterface returns the string representation of this timestampinterfacephp mongodb driver monitoring commandfailedevent returns the command s request idphp mongodb driver monitoring commandfailedevent returns the server on which the command was executedphp mongodb driver monitoring commandsucceededevent returns the server on which the command was executedphp mongodb driver readconcern returns an object for bson serializationphp mongodb driver readpreference returns an object for bson serializationphp mongodb driver writeconcern returns an object for bson serializationphp mongodb driver writeconcern returns the writeconcern s journal optionphp mongodb driver writeconcern returns the writeconcern s w optionphp mongodb driver writeconcern returns the writeconcern s wtimeout optionphp mongodb driver writeresult returns the server associated with this write resultphp mongodb driver writeresult returns the number of documents inserted by an upsert
关注编程学问公众号