(mongodb >=1.0.0)
MongoDB\Driver\ReadConcern::getLevel — Returns the ReadConcern's "level" option
锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷
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"