Change $sample calculation to avoid conversion to float.

This commit is contained in:
v-dareck 2017-01-31 19:07:41 -08:00
parent fa4c0e8c4c
commit c61c272dd2

View file

@ -6,7 +6,7 @@ Number MAX_INT to string with custom formats
require_once("autonomous_setup.php");
/* Sample number MAX_INT */
$sample = 2**31-1;
$sample = 2*(2**30-1)+1;
var_dump ($sample);
/* Connect */