| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
MongoDB::getWriteConcern(PECL mongo >=1.5.0) MongoDB::getWriteConcern — Get the write concern for this database 説明
public array MongoDB::getWriteConcern
( void
)
パラメータこの関数にはパラメータはありません。 返り値この関数は、書き込み確認を表す配列を返します。w の値はサーバーの台数を表す整数値かモードを表す文字列、そして wtimeout の値はサーバーが書き込み確認を待つ最大ミリ秒数です。 例例1 MongoDB::getWriteConcern() return value example
<?php 上の例の出力は以下となります。 array(2) { ["w"]=> int(1) ["wtimeout"]=> int(500) } array(2) { ["w"]=> int(1) ["wtimeout"]=> int(1000) } 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「MongoDB::getWriteConcern - Get the write concern for this database」をGoogle検索
|