Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
opt
/
php-7.2
/
share
/
test
/
mongodb
/
tests
/
bson
/
//proc/self/root/opt/php-7.2/share/test/mongodb/tests/bson/bson-timestamp-get_properties-002.phpt
--TEST-- MongoDB\BSON\Timestamp get_properties handler (foreach) --FILE-- <?php $timestamp = new MongoDB\BSON\Timestamp(1234, 5678); foreach ($timestamp as $key => $value) { var_dump($key); var_dump($value); } ?> ===DONE=== <?php exit(0); ?> --EXPECT-- string(9) "increment" string(4) "1234" string(9) "timestamp" string(4) "5678" ===DONE===