관리-도구
편집 파일: readconcern-bsonserialize-001.phpt
--TEST-- MongoDB\Driver\ReadConcern::bsonSerialize() --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) { echo toJSON(fromPHP($test)), "\n"; } ?> ===DONE=== <?php exit(0); ?> --EXPECT-- { } { "level" : "local" } ===DONE===