📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 23:30:07
📂
/ (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: writeresult-isacknowledged-002.phpt
Read Only
--TEST-- MongoDB\Driver\WriteResult::isAcknowledged() with inherited WriteConcern --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"; /* We use w:0 here because libmongoc detects w:1 as the server's default and * omits it. */ $uri = append_uri_option(URI, 'w=0'); $manager = create_test_manager($uri); $bulk = new \MongoDB\Driver\BulkWrite; $bulk->insert(array('x' => 1)); $result = $manager->executeBulkWrite(NS, $bulk); printf("WriteResult::isAcknowledged(): %s\n", $result->isAcknowledged() ? 'true' : 'false'); var_dump($result); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- WriteResult::isAcknowledged(): false object(MongoDB\Driver\WriteResult)#%d (%d) { ["insertedCount"]=> NULL ["matchedCount"]=> NULL ["modifiedCount"]=> NULL ["deletedCount"]=> NULL ["upsertedCount"]=> NULL ["server"]=> object(MongoDB\Driver\Server)#%d (%d) {%A } ["upsertedIds"]=> array(0) { } ["writeErrors"]=> array(0) { } ["writeConcernError"]=> NULL ["writeConcern"]=> object(MongoDB\Driver\WriteConcern)#%d (3) { ["w"]=> int(0) ["j"]=> NULL ["wtimeout"]=> int(0) } ["errorReplies"]=> array(0) { } } ===DONE===
💾 Save Changes
❌ Cancel