Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
thread-self
/
root
/
opt
/
php-7.1
/
share
/
test
/
mongodb
/
tests
/
readPreference
/
//proc/thread-self/root/opt/php-7.1/share/test/mongodb/tests/readPreference/bug0851-001.phpt
--TEST-- PHPC-851: ReadPreference constructor should not modify tagSets argument --FILE-- <?php $tagSets = [ ['dc' => 'ny'], [], ]; $rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_SECONDARY_PREFERRED, $tagSets); var_dump($tagSets); /* Dump the Manager's ReadPreference to ensure that each element in the $tagSets * argument was converted to an object. */ var_dump($rp); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- array(2) { [0]=> array(1) { ["dc"]=> string(2) "ny" } [1]=> array(0) { } } object(MongoDB\Driver\ReadPreference)#%d (%d) { ["mode"]=> string(18) "secondaryPreferred" ["tags"]=> array(2) { [0]=> object(stdClass)#%d (%d) { ["dc"]=> string(2) "ny" } [1]=> object(stdClass)#%d (%d) { } } } ===DONE===