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 /
writeConcern /
Delete
Unzip
Name
Size
Permission
Date
Action
bug1598-001.phpt
593
B
-rw-r--r--
2025-04-09 02:56
bug1598-002.phpt
871
B
-rw-r--r--
2025-04-09 02:56
writeconcern-bsonserialize-001.phpt
1.41
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-bsonserialize-002.phpt
1.68
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-bsonserialize-003.phpt
427
B
-rw-r--r--
2025-04-09 02:56
writeconcern-bsonserialize-004.phpt
530
B
-rw-r--r--
2025-04-09 02:56
writeconcern-constants.phpt
189
B
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor-001.phpt
1.58
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor-002.phpt
391
B
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor_error-001.phpt
612
B
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor_error-002.phpt
982
B
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor_error-003.phpt
406
B
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor_error-004.phpt
422
B
-rw-r--r--
2025-04-09 02:56
writeconcern-ctor_error-005.phpt
440
B
-rw-r--r--
2025-04-09 02:56
writeconcern-debug-001.phpt
559
B
-rw-r--r--
2025-04-09 02:56
writeconcern-debug-002.phpt
652
B
-rw-r--r--
2025-04-09 02:56
writeconcern-debug-003.phpt
2.16
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-getjournal-001.phpt
464
B
-rw-r--r--
2025-04-09 02:56
writeconcern-getw-001.phpt
457
B
-rw-r--r--
2025-04-09 02:56
writeconcern-getwtimeout-001.phpt
395
B
-rw-r--r--
2025-04-09 02:56
writeconcern-getwtimeout-002.phpt
559
B
-rw-r--r--
2025-04-09 02:56
writeconcern-isdefault-001.phpt
2.43
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-serialization-002.phpt
4.28
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-serialization_error-001.phpt
672
B
-rw-r--r--
2025-04-09 02:56
writeconcern-serialization_error-002.phpt
672
B
-rw-r--r--
2025-04-09 02:56
writeconcern-set_state-001.phpt
1.7
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-set_state_error-001.phpt
1.96
KB
-rw-r--r--
2025-04-09 02:56
writeconcern-var_export-001.phpt
2.17
KB
-rw-r--r--
2025-04-09 02:56
writeconcern_error-001.phpt
275
B
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\WriteConcern serialization (__serialize and __unserialize) --FILE-- <?php require_once __DIR__ . '/../utils/basic.inc'; $tests = [ new MongoDB\Driver\WriteConcern(-3), // MONGOC_WRITE_CONCERN_W_MAJORITY new MongoDB\Driver\WriteConcern(-2), // MONGOC_WRITE_CONCERN_W_DEFAULT new MongoDB\Driver\WriteConcern(-1), new MongoDB\Driver\WriteConcern(0), new MongoDB\Driver\WriteConcern(1), new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY), new MongoDB\Driver\WriteConcern('tag'), new MongoDB\Driver\WriteConcern(1, 0), new MongoDB\Driver\WriteConcern(1, 0, false), new MongoDB\Driver\WriteConcern(1, 1000), new MongoDB\Driver\WriteConcern(1, 1000, true), new MongoDB\Driver\WriteConcern(-2, 0, true), // Note: wtimeout is only applicable for w > 1 new MongoDB\Driver\WriteConcern(-2, 1000), // 64-bit wtimeout is always encoded as as string MongoDB\Driver\WriteConcern::__set_state(['w' => 2, 'wtimeout' => '2147483648']), ]; foreach ($tests as $test) { var_dump($test); echo $s = serialize($test), "\n"; var_dump(unserialize($s)); echo "\n"; } ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> string(8) "majority" } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";s:8:"majority";} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> string(8) "majority" } object(MongoDB\Driver\WriteConcern)#%d (%d) { } O:27:"MongoDB\Driver\WriteConcern":0:{} object(MongoDB\Driver\WriteConcern)#%d (%d) { } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(-1) } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";i:-1;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(-1) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(0) } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";i:0;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(0) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";i:1;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> string(8) "majority" } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";s:8:"majority";} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> string(8) "majority" } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> string(3) "tag" } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";s:3:"tag";} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> string(3) "tag" } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"w";i:1;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) ["j"]=> bool(false) } O:27:"MongoDB\Driver\WriteConcern":2:{s:1:"w";i:1;s:1:"j";b:0;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) ["j"]=> bool(false) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) ["wtimeout"]=> int(1000) } O:27:"MongoDB\Driver\WriteConcern":2:{s:1:"w";i:1;s:8:"wtimeout";i:1000;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) ["wtimeout"]=> int(1000) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) ["j"]=> bool(true) ["wtimeout"]=> int(1000) } O:27:"MongoDB\Driver\WriteConcern":3:{s:1:"w";i:1;s:1:"j";b:1;s:8:"wtimeout";i:1000;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(1) ["j"]=> bool(true) ["wtimeout"]=> int(1000) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["j"]=> bool(true) } O:27:"MongoDB\Driver\WriteConcern":1:{s:1:"j";b:1;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["j"]=> bool(true) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["wtimeout"]=> int(1000) } O:27:"MongoDB\Driver\WriteConcern":1:{s:8:"wtimeout";i:1000;} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["wtimeout"]=> int(1000) } object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(2) ["wtimeout"]=> %rint\(2147483648\)|string\(10\) "2147483648"%r } O:27:"MongoDB\Driver\WriteConcern":2:{s:1:"w";i:2;s:8:"wtimeout";s:10:"2147483648";} object(MongoDB\Driver\WriteConcern)#%d (%d) { ["w"]=> int(2) ["wtimeout"]=> %rint\(2147483648\)|string\(10\) "2147483648"%r } ===DONE===