PHP bitwise left shifting 32 spaces problem and bad results with large numbers arithmetic operations

大憨熊 提交于 2019-12-01 00:14:15

Php integer precision is limited to machine word size (32, 64). To work with arbitrary precision integers you have to store them as strings and use bc or gmp library:

   echo bcmul('516103988', bcpow(2, 32));  // 2216649749795176448
Victor Stanciu

Based on Pascal MARTIN's suggestions, i tried both the BCMath and the GMP extension and came up with the following solutions:

With BCMath:

$a = 516103988;
$s = bcpow(2, 32);    
$a = bcadd(bcmul($a, $s), 9379);
echo $a; // works, echoes 2216649749795185827

With GMP:

$a = gmp_init(516103988); 
$s = gmp_pow(gmp_init(2), 32); 
$a = gmp_add(gmp_mul($a, $s), gmp_init(9379)); 
echo gmp_strval($a);  // also works

From what i understand, there is a far greater chance for BCMath to be installed on the server then GMP, so i will be using the first solution.

Thanks :)

Pascal MARTIN

Doing 32 bit-shifting operations will probably not work like you expect, as integers tend to be stored on 32 bits.

Quoting this page : Bitwise Operators

Don't right shift for more than 32 bits on 32 bits systems.
Don't left shift in case it results to number longer than 32 bits.
Use functions from the gmp extension for bitwise manipulation on numbers beyond PHP_INT_MAX.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!