php8.5
Home/ Manual/ driver / readconcern/ MongoDB\Driver\ReadConcern::isDefault

MongoDB\Driver\ReadConcern::isDefault

PHP function Edit on GitHub ✎

(mongodb >=1.3.0)

Checks if this is the default read concern

Description

MongoDB\Driver\ReadConcern::isDefault(): bool

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 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.

Parameters Parameters

Return Values

Returns true if this is the default read concern and false otherwise.

Errors/Exceptions

Examples

MongoDB\Driver\ReadConcern::isDefault() example

php
<?php

$rc = new MongoDB\Driver\ReadConcern(null);
var_dump($rc->isDefault());

$rc = new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::MAJORITY);
var_dump($rc->isDefault());

$manager = new MongoDB\Driver\Manager('mongodb://127.0.0.1/?readConcernLevel=majority');
$rc = $manager->getReadConcern();
var_dump($rc->isDefault());

$manager = new MongoDB\Driver\Manager('mongodb://127.0.0.1/');
$rc = $manager->getReadConcern();
var_dump($rc->isDefault());

?>

The above example will output:

output
bool(true)
bool(false)
bool(false)
bool(true)

See Also

  • MongoDB\Driver\Manager::getReadConcern
  • Read Concern reference

Source: reference/mongodb/mongodb/driver/readconcern/isdefault.xml · from the official PHP manual (php/doc-en)