PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

MongoDB\Driver\Manager::getReadConcern - Return the ReadConcern for the Manager | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

MongoDB\Driver\Manager::getReadConcern

(mongodb >=1.1.0)

MongoDB\Driver\Manager::getReadConcernReturn the ReadConcern for the Manager

説明

final public MongoDB\Driver\ReadConcern MongoDB\Driver\Manager::getReadConcern ( void )

Returns the MongoDB\Driver\ReadConcern for the Manager, which is derived from its URI options. This is the default read concern for queries and commands executed on the Manager.

パラメータ

この関数にはパラメータはありません。

返り値

The MongoDB\Driver\ReadConcern for the Manager.

エラー / 例外

例1 MongoDB\Driver\Manager::getReadConcern() example

<?php

$manager 
= new MongoDB\Driver\Manager('mongodb://localhost:27017');
var_dump($manager->getReadConcern());

$manager = new MongoDB\Driver\Manager('mongodb://localhost:27017/?readConcernLevel=local');
var_dump($manager->getReadConcern());

?>

上の例の出力は、 たとえば以下のようになります。

object(MongoDB\Driver\ReadConcern)#2 (0) {
}
object(MongoDB\Driver\ReadConcern)#1 (1) {
  ["level"]=>
  string(5) "local"
}

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「MongoDB\Driver\Manager::getReadConcern - Return the ReadConcern for the Manager」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | MongoDB\Driver\Manager::getReadConcern - Return the ReadConcern for the Manager」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: