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-8.2
/
share
/
test
/
mongodb
/
tests
/
bson
/
//proc/self/root/opt/php-8.2/share/test/mongodb/tests/bson/bson-timestamp-set_state-002.phpt
--TEST-- MongoDB\BSON\Timestamp::__set_state() (64-bit) --SKIPIF-- <?php if (8 !== PHP_INT_SIZE) { die('skip Only for 64-bit platform'); } ?> --FILE-- <?php $tests = [ [4294967295, 0], [0, 4294967295], ]; foreach ($tests as $test) { list($increment, $timestamp) = $test; var_export(MongoDB\BSON\Timestamp::__set_state([ 'increment' => $increment, 'timestamp' => $timestamp, ])); echo "\n\n"; } ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- %r\\?%rMongoDB\BSON\Timestamp::__set_state(array( 'increment' => '4294967295', 'timestamp' => '0', )) %r\\?%rMongoDB\BSON\Timestamp::__set_state(array( 'increment' => '0', 'timestamp' => '4294967295', )) ===DONE===