📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 08:40:24
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php85-pecl-mongodb_2.3.1-1.el8
/
tests
📍 /opt/alt/tests/alt-php85-pecl-mongodb_2.3.1-1.el8/tests
🔄 Refresh
✏️
Editing: query-ctor-002.phpt
Read Only
--TEST-- MongoDB\Driver\Query construction with options --FILE-- <?php var_dump(new MongoDB\Driver\Query( ['x' => 1], [ 'allowDiskUse' => false, 'allowPartialResults' => false, 'awaitData' => false, 'batchSize' => 10, 'collation' => ['locale' => 'en_US'], 'comment' => 'foo', 'exhaust' => false, 'limit' => 20, 'max' => ['y' => 100], 'maxTimeMS' => 1000, 'min' => ['y' => 1], 'noCursorTimeout' => false, 'projection' => ['x' => 1, 'y' => 1], 'returnKey' => false, 'showRecordId' => false, 'singleBatch' => false, 'skip' => 5, 'sort' => ['y' => -1], 'tailable' => false, ] )); var_dump(new MongoDB\Driver\Query( ['x' => 1], ['hint' => 'y_1'] )); var_dump(new MongoDB\Driver\Query( ['x' => 1], ['hint' => ['y' => 1]] )); var_dump(new MongoDB\Driver\Query( ['x' => 1], ['readConcern' => new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::LOCAL)] )); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- object(MongoDB\Driver\Query)#%d (%d) { ["filter"]=> object(stdClass)#%d (%d) { ["x"]=> int(1) } ["options"]=> object(stdClass)#%d (%d) { ["allowDiskUse"]=> bool(false) ["allowPartialResults"]=> bool(false) ["awaitData"]=> bool(false) ["batchSize"]=> int(10) ["collation"]=> object(stdClass)#%d (%d) { ["locale"]=> string(5) "en_US" } ["comment"]=> string(3) "foo" ["exhaust"]=> bool(false) ["limit"]=> int(20) ["max"]=> object(stdClass)#%d (%d) { ["y"]=> int(100) } ["maxTimeMS"]=> int(1000) ["min"]=> object(stdClass)#%d (%d) { ["y"]=> int(1) } ["noCursorTimeout"]=> bool(false) ["projection"]=> object(stdClass)#%d (%d) { ["x"]=> int(1) ["y"]=> int(1) } ["returnKey"]=> bool(false) ["showRecordId"]=> bool(false) ["singleBatch"]=> bool(false) ["skip"]=> int(5) ["sort"]=> object(stdClass)#%d (%d) { ["y"]=> int(-1) } ["tailable"]=> bool(false) } ["readConcern"]=> NULL } object(MongoDB\Driver\Query)#%d (%d) { ["filter"]=> object(stdClass)#%d (%d) { ["x"]=> int(1) } ["options"]=> object(stdClass)#%d (%d) { ["hint"]=> string(3) "y_1" } ["readConcern"]=> NULL } object(MongoDB\Driver\Query)#%d (%d) { ["filter"]=> object(stdClass)#%d (%d) { ["x"]=> int(1) } ["options"]=> object(stdClass)#%d (%d) { ["hint"]=> object(stdClass)#%d (%d) { ["y"]=> int(1) } } ["readConcern"]=> NULL } object(MongoDB\Driver\Query)#%d (%d) { ["filter"]=> object(stdClass)#%d (%d) { ["x"]=> int(1) } ["options"]=> object(stdClass)#%d (%d) { } ["readConcern"]=> object(MongoDB\Driver\ReadConcern)#%d (%d) { ["level"]=> string(5) "local" } } ===DONE===
💾 Save Changes
❌ Cancel