관리-도구
편집 파일: readconcern-debug-001.phpt
--TEST-- MongoDB\Driver\ReadConcern debug output --FILE-- <?php require_once __DIR__ . '/../utils/basic.inc'; $tests = [ new MongoDB\Driver\ReadConcern(), new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::LOCAL), ]; foreach ($tests as $test) { var_dump($test); } ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- object(MongoDB\Driver\ReadConcern)#%d (%d) { } object(MongoDB\Driver\ReadConcern)#%d (%d) { ["level"]=> string(5) "local" } ===DONE===