略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: MongoDB\Driver\WriteConcern::bsonSerialize

2024-04-30

MongoDB\Driver\WriteConcern::bsonSerialize

(mongodb >=1.2.0)

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

说明

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

参数

此函数没有参数。

返回值

Returns an object for serializing the WriteConcern as BSON.

错误/异常

范例

示例 #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" }

示例 #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 }

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/mongodb-driver-writeconcern.bsonserialize.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3