MongoDB\Driver\ReadConcern::bsonSerialize

(mongodb >=1.2.0)

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

说明

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

参数

此函数没有参数。

返回值

Returns an object for serializing the ReadConcern as BSON.

错误/异常

范例

Example #1 MongoDB\Driver\ReadConcern::bsonSerialize() with empty read concern

<?php

$rc 
= new MongoDB\Driver\ReadConcern;
var_dump($rc->bsonSerialize());

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

?>

以上例程的输出类似于:

object(stdClass)#2 (0) {
}

{ }

Example #2 MongoDB\Driver\ReadConcern::bsonSerialize() with local read concern

<?php

$rc 
= new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::LOCAL);
var_dump($rc->bsonSerialize());

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

?>

以上例程的输出类似于:

object(stdClass)#2 (1) {
  ["level"]=>
  string(5) "local"
}

{ "level" : "local" }

参见

相关文章
php mongodb bson binaryinterface returns the binaryinterface s typephp mongodb bson binaryinterface returns the binaryinterface s dataphp mongodb bson int64 returns the string representation of this int64php mongodb bson minkey returns a representation that can be converted to jsonphp mongodb bson regex returns the string representation of this regexphp mongodb bson timestamp returns the string representation of this timestampphp mongodb bson utcdatetime returns the string representation of this utcdatetimephp mongodb bson utcdatetimeinterface returns the datetime representation of this utcdatetimeinterfacephp mongodb driver monitoring commandfailedevent returns the command s duration in microsecondsphp mongodb driver monitoring commandfailedevent returns the exception associated with the failed commandphp mongodb driver monitoring commandfailedevent returns the command s operation idphp mongodb driver monitoring commandsucceededevent returns the command s duration in microsecondsphp mongodb driver monitoring commandsucceededevent returns the command s operation idphp mongodb driver monitoring commandsucceededevent returns the command reply documentphp mongodb driver readconcern returns an object for bson serializationphp mongodb driver readconcern returns the readconcern s level optionphp mongodb driver readpreference returns an object for bson serializationphp mongodb driver writeconcern returns an object for bson serializationphp mongodb driver writeresult returns the number of documents deletedphp mongodb driver writeresult returns the number of documents inserted excluding upserts
关注编程学问公众号