MongoDB\Driver\ReadConcern::getLevel

(mongodb >=1.0.0)

MongoDB\Driver\ReadConcern::getLevelReturns the ReadConcern's "level" option

Descrizione

final public MongoDB\Driver\ReadConcern::getLevel(): ?string

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the ReadConcern's "level" option.

Errori/Eccezioni

Esempi

Example #1 MongoDB\Driver\ReadConcern::getLevel() example

<?php

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

$rc = new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::LOCAL);
var_dump($rc->getLevel());

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

?>

Il precedente esempio visualizzerĂ :

NULL
string(5) "local"
string(8) "majority"
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top