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 /
query /
Delete
Unzip
Name
Size
Permission
Date
Action
bug0430-001.phpt
353
B
-rw-r--r--
2025-04-09 02:56
bug0430-002.phpt
481
B
-rw-r--r--
2025-04-09 02:56
bug0430-003.phpt
409
B
-rw-r--r--
2025-04-09 02:56
bug2457-001.phpt
807
B
-rw-r--r--
2025-04-09 02:56
bug2457-002.phpt
637
B
-rw-r--r--
2025-04-09 02:56
query-ctor-001.phpt
1.72
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-002.phpt
3.5
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-003.phpt
2.99
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-004.phpt
2.88
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-005.phpt
1.12
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-006.phpt
845
B
-rw-r--r--
2025-04-09 02:56
query-ctor-007.phpt
1.01
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-comment-001.phpt
1.52
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-comment_error-001.phpt
576
B
-rw-r--r--
2025-04-09 02:56
query-ctor-let-001.phpt
1.51
KB
-rw-r--r--
2025-04-09 02:56
query-ctor-let_error-001.phpt
921
B
-rw-r--r--
2025-04-09 02:56
query-ctor_error-001.phpt
1.38
KB
-rw-r--r--
2025-04-09 02:56
query-ctor_error-002.phpt
2.51
KB
-rw-r--r--
2025-04-09 02:56
query-ctor_error-003.phpt
654
B
-rw-r--r--
2025-04-09 02:56
query-ctor_error-004.phpt
2.63
KB
-rw-r--r--
2025-04-09 02:56
query-ctor_error-005.phpt
452
B
-rw-r--r--
2025-04-09 02:56
query-ctor_error-006.phpt
563
B
-rw-r--r--
2025-04-09 02:56
query-ctor_error-007.phpt
2.74
KB
-rw-r--r--
2025-04-09 02:56
query-debug-001.phpt
1.13
KB
-rw-r--r--
2025-04-09 02:56
query-debug-002.phpt
659
B
-rw-r--r--
2025-04-09 02:56
query-debug-003.phpt
952
B
-rw-r--r--
2025-04-09 02:56
query_error-001.phpt
240
B
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\Query::__construct(): let option --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_not_live(); ?> <?php skip_if_server_version('<', '5.0'); ?> <?php skip_if_not_clean(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; class CommandLogger implements MongoDB\Driver\Monitoring\CommandSubscriber { public function commandStarted(MongoDB\Driver\Monitoring\CommandStartedEvent $event): void { $command = $event->getCommand(); if (!isset($command->let)) { printf("%s does not include let option\n", $event->getCommandName()); return; } printf("%s included let: %s\n", $event->getCommandName(), json_encode($command->let)); } public function commandSucceeded(MongoDB\Driver\Monitoring\CommandSucceededEvent $event): void { } public function commandFailed(MongoDB\Driver\Monitoring\CommandFailedEvent $event): void { } } $manager = create_test_manager(); $bulk = new MongoDB\Driver\BulkWrite; $bulk->insert(['_id' => 1]); $bulk->insert(['_id' => 2]); $manager->executeBulkWrite(NS, $bulk); $query = new MongoDB\Driver\Query( ['$expr' => ['$eq' => ['$_id', '$$id']]], ['let' => ['id' => 1]] ); $manager->addSubscriber(new CommandLogger); $cursor = $manager->executeQuery(NS, $query); var_dump($cursor->toArray()); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- find included let: {"id":1} array(1) { [0]=> object(stdClass)#%d (%d) { ["_id"]=> int(1) } } ===DONE===