MongoDB\Driver\WriteConcern::bsonSerialize
(mongodb >=1.2.0)
MongoDB\Driver\WriteConcern::bsonSerialize — Returns an object for BSON serialization
説明
パラメータ
この関数にはパラメータはありません。
戻り値
Returns an object for serializing the WriteConcern as BSON.
エラー / 例外
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
例
例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\Document::fromPHP($wc)->toRelaxedExtendedJSON();
?>
上の例の出力は、 たとえば以下のようになります。
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(2, 1000, true);
var_dump($wc->bsonSerialize());
echo "\n", MongoDB\BSON\Document::fromPHP($wc)->toRelaxedExtendedJSON();
?>
上の例の出力は、 たとえば以下のようになります。
object(stdClass)#2 (3) { ["w"]=> int(2) ["j"]=> bool(true) ["wtimeout"]=> int(1000) } { "w" : 2, "j" : true, "wtimeout" : 1000 }
参考
- MongoDB\BSON\Serializable::bsonSerialize() - Provides an array or document to serialize as BSON
- » Write Concern reference
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google