Home  >  Article  >  Backend Development  >  Large integer - super large integer calculation error under php windows

Large integer - super large integer calculation error under php windows

WBOY
WBOYOriginal
2016-09-06 08:57:071126browse

The environment is windows.
PHP is 5.5.x

Exception occurred in calculation of very large integer type;

Later use the following solution:
(value & 0xFFFFFFFF) + 0x80000000 + 0x80000000

Is there a better solution? Or explain why the above expression can be correct?

PS: The solution was found by me.

Reply content:

The environment is windows.
PHP is 5.5.x

Exception occurred in calculation of very large integer type;

Later use the following solution:
(value & 0xFFFFFFFF) + 0x80000000 + 0x80000000

Is there a better solution? Or explain why the above expression can be correct?

PS: The solution was found by me.

Thank you for the invitation
There is a better solution. The poster can refer to this http://www.51-n.com/t-3945-1-...

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn