Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
tests /
mongodb /
tests /
standalone /
Delete
Unzip
Name
Size
Permission
Date
Action
bug0231.phpt
786
B
-rw-r--r--
2025-04-09 02:56
bug0357.phpt
600
B
-rw-r--r--
2025-04-09 02:56
bug0545.phpt
3.17
KB
-rw-r--r--
2025-04-09 02:56
bug0655.phpt
1.07
KB
-rw-r--r--
2025-04-09 02:56
command-aggregate-001.phpt
960
B
-rw-r--r--
2025-04-09 02:56
connectiontimeoutexception-001.phpt
1019
B
-rw-r--r--
2025-04-09 02:56
executiontimeoutexception-001.phpt
986
B
-rw-r--r--
2025-04-09 02:56
executiontimeoutexception-002.phpt
964
B
-rw-r--r--
2025-04-09 02:56
manager-as-singleton.phpt
1.46
KB
-rw-r--r--
2025-04-09 02:56
query-errors.phpt
1.22
KB
-rw-r--r--
2025-04-09 02:56
update-multi-001.phpt
4.91
KB
-rw-r--r--
2025-04-09 02:56
write-error-001.phpt
938
B
-rw-r--r--
2025-04-09 02:56
writeresult-isacknowledged-001.phpt
1
KB
-rw-r--r--
2025-04-09 02:56
writeresult-isacknowledged-002.phpt
1.16
KB
-rw-r--r--
2025-04-09 02:56
writeresult-isacknowledged-003.phpt
1.07
KB
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\WriteResult::isAcknowledged() with custom 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"; $manager = create_test_manager(); $bulk = new \MongoDB\Driver\BulkWrite; $bulk->insert(array('x' => 2)); $result = $manager->executeBulkWrite(NS, $bulk, ['writeConcern' => new MongoDB\Driver\WriteConcern(0)]); 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) { ["nInserted"]=> NULL ["nMatched"]=> NULL ["nModified"]=> NULL ["nRemoved"]=> NULL ["nUpserted"]=> NULL ["upsertedIds"]=> array(0) { } ["writeErrors"]=> array(0) { } ["writeConcernError"]=> NULL ["writeConcern"]=> object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(0) } ["errorReplies"]=> array(0) { } } ===DONE===