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 binary returns a representation that can be converted to jsonphp mongodb bson binary returns the binary s dataphp mongodb bson decimal128interface returns the string representation of this decimal128interfacephp mongodb bson javascriptinterface returns the javascriptinterface s codephp mongodb bson maxkey returns a representation that can be converted to jsonphp mongodb bson objectidinterface returns the hexidecimal representation of this objectidinterfacephp mongodb bson unserializable constructs the object from a bson array or documentphp mongodb driver cursor returns the id for this cursorphp mongodb driver cursor returns the server associated with this cursorphp mongodb driver monitoring commandstartedevent returns the server on which the command was executedphp 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 readpreference returns the readpreference s maxstalenessseconds optionphp mongodb driver server returns an array of tags describing this server in a replica setphp mongodb driver server returns an integer denoting the type of this serverphp mongodb driver writeconcern returns an object for bson serializationphp mongodb driver writeerror returns the writeerror s error codephp mongodb driver writeerror returns the index of the write operation corresponding to this writeerrorphp driver architecture and internals serialization and deserialization of php variables into mongodb
关注编程学问公众号