📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 09:51:11
📂
/
/
opt
/
alt
/
tests
/
alt-php80-pecl-mongodb_1.18.1-1.el8
/
tests
✏️
Editing: cursorinterface-001.phpt
--TEST-- MongoDB\Driver\CursorInterface is implemented by MongoDB\Driver\Cursor --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_not_live(); ?> <?php skip_if_not_clean(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; $manager = create_test_manager(); $bulk = new MongoDB\Driver\BulkWrite(); $bulk->insert(array('_id' => 1, 'x' => 1)); $bulk->insert(array('_id' => 2, 'x' => 1)); $manager->executeBulkWrite(NS, $bulk); $cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query(array("x" => 1))); var_dump($cursor instanceof MongoDB\Driver\CursorInterface); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) ===DONE===
💾 Save Changes
❌ Cancel