|
MongoDB\Driver\ReadConcern::isDefaultChecks if this is the default read concern 説明
final public bool MongoDB\Driver\ReadConcern::isDefault()
Returns whether this is the default read concern (i.e. no options are specified). This method is primarily intended to be used in conjunction with MongoDB\Driver\Manager::getReadConcern to determine whether the Manager has been constructed without any read concern options. The driver will not include a default read concern in its read operations (e.g. MongoDB\Driver\Manager::executeQuery) in order order to allow the server to apply its own default. Libraries that access the Manager's read concern to include it in their own read commands should use this method to ensure that default read concerns are left unset. パラメータこの関数にはパラメータはありません。 戻り値
Returns エラー / 例外
例例1 MongoDB\Driver\ReadConcern::isDefault example
上の例の出力は以下となります。 bool(true) bool(false) bool(false) bool(true) 参考
|