1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
--TEST--
PHPC-544: Consult SIZEOF_ZEND_LONG for 64-bit integer support
--SKIPIF--
<?php if (8 !== PHP_INT_SIZE) { die('skip Only for 64-bit platform'); } ?>
--FILE--
<?php
require_once __DIR__ . '/../utils/tools.php';
$tests = [
['x' => -2147483648],
['x' => 2147483647],
['x' => -4294967294],
['x' => 4294967294],
['x' => -4294967295],
['x' => 4294967295],
['x' => -9223372036854775807],
['x' => 9223372036854775807],
];
foreach ($tests as $test) {
$bson = fromPHP($test);
/* Note: Although libbson can parse the extended JSON representation for
* 64-bit integers (i.e. "$numberLong"), it currently prints them as
* doubles (see: https://jira.mongodb.org/browse/CDRIVER-375). */
printf("Test %s\n", toJSON($bson));
hex_dump($bson);
var_dump(toPHP($bson));
echo "\n";
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Test { "x" : -2147483648 }
0 : 0c 00 00 00 10 78 00 00 00 00 80 00 [.....x......]
object(stdClass)#%d (%d) {
["x"]=>
int(-2147483648)
}
Test { "x" : 2147483647 }
0 : 0c 00 00 00 10 78 00 ff ff ff 7f 00 [.....x......]
object(stdClass)#%d (%d) {
["x"]=>
int(2147483647)
}
Test { "x" : -4294967294 }
0 : 10 00 00 00 12 78 00 02 00 00 00 ff ff ff ff 00 [.....x..........]
object(stdClass)#%d (%d) {
["x"]=>
int(-4294967294)
}
Test { "x" : 4294967294 }
0 : 10 00 00 00 12 78 00 fe ff ff ff 00 00 00 00 00 [.....x..........]
object(stdClass)#%d (%d) {
["x"]=>
int(4294967294)
}
Test { "x" : -4294967295 }
0 : 10 00 00 00 12 78 00 01 00 00 00 ff ff ff ff 00 [.....x..........]
object(stdClass)#%d (%d) {
["x"]=>
int(-4294967295)
}
Test { "x" : 4294967295 }
0 : 10 00 00 00 12 78 00 ff ff ff ff 00 00 00 00 00 [.....x..........]
object(stdClass)#%d (%d) {
["x"]=>
int(4294967295)
}
Test { "x" : -9223372036854775807 }
0 : 10 00 00 00 12 78 00 01 00 00 00 00 00 00 80 00 [.....x..........]
object(stdClass)#%d (%d) {
["x"]=>
int(-9223372036854775807)
}
Test { "x" : 9223372036854775807 }
0 : 10 00 00 00 12 78 00 ff ff ff ff ff ff ff 7f 00 [.....x..........]
object(stdClass)#%d (%d) {
["x"]=>
int(9223372036854775807)
}
===DONE===
|