MongoDB\Driver\ReadConcern::getLevel

(mongodb >=1.0.0)

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

说锟斤拷

final public MongoDB\Driver\ReadConcern::getLevel ( void ) : string|null

锟斤拷锟斤拷

锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷

锟斤拷锟斤拷值

Returns the ReadConcern's "level" option.

锟斤拷锟斤拷锟届常

锟斤拷锟斤拷

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());

?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

NULL
string(5) "local"
string(8) "majority"