관리-도구
편집 파일: bug0430-003.phpt
--TEST-- PHPC-430: Query constructor arguments are modified --FILE-- <?php function buildQuery($filter, $options) { $options["cursorFlags"] = 0; return new MongoDB\Driver\Query($filter, $options); } $filter = []; $options = ['sort' => []]; $query = buildQuery($filter, $options); var_dump($options); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- array(1) { ["sort"]=> array(0) { } } ===DONE===