array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'mongodb-driver-writeconcern.isdefault.php', 1 => 'MongoDB\\Driver\\WriteConcern::isDefault', 2 => 'Checks if this is the default write concern', ), 'up' => array ( 0 => 'class.mongodb-driver-writeconcern.php', 1 => 'MongoDB\\Driver\\WriteConcern', ), 'prev' => array ( 0 => 'mongodb-driver-writeconcern.getwtimeout.php', 1 => 'MongoDB\\Driver\\WriteConcern::getWtimeout', ), 'next' => array ( 0 => 'class.mongodb-driver-readpreference.php', 1 => 'MongoDB\\Driver\\ReadPreference', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/mongodb/driver/writeconcern/isdefault.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

MongoDB\Driver\WriteConcern::isDefault

(mongodb >=1.3.0)

MongoDB\Driver\WriteConcern::isDefaultChecks if this is the default write concern

Опис

final public MongoDB\Driver\WriteConcern::isDefault(): bool

Returns whether this is the default write concern (i.e. no options are specified). This method is primarily intended to be used in conjunction with MongoDB\Driver\Manager::getWriteConcern() to determine whether the Manager has been constructed without any write concern options.

The driver will not include a default write concern in its write operations (e.g. MongoDB\Driver\Manager::executeBulkWrite()) in order to allow the server to apply its own default, which may have been » modified. Libraries that access the Manager's write concern to include it in their own write commands should use this method to ensure that default write concerns are left unset.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

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

Помилки/виключення

Приклади

Приклад #1 MongoDB\Driver\WriteConcern::isDefault() example

<?php

$wc
= new MongoDB\Driver\WriteConcern(1);
var_dump($wc->isDefault());

$manager = new MongoDB\Driver\Manager('mongodb://127.0.0.1/?w=majority');
$wc = $manager->getWriteConcern();
var_dump($wc->isDefault());

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

?>

Поданий вище приклад виведе:

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

Прогляньте також