在 32 位系统上处理 PHP longint
我使用的是 32 位系统,我必须处理 longint。有没有办法在32位系统上处理PHP中的longint(64位整数)? (我不能使用(int)转换)
I'm using a 32bit system and I have to handle longint. Is there any way to handle longint (64bit integer) in PHP on 32bit system? (I cannot use (int) convertion)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 GMP 库 或 BCmath 通常与 PHP 一起安装。
查看 在 PHP 线程中处理大量数据 以获得更多讨论。
Check out the GMP library or BCmath which are usually installed with PHP.
Check out the Working with large numbers in PHP thread for more discussion.
这是一种方法:
我不知道您正在使用哪个特定接口,但您可能可以将 GMP(或您使用的任何内容)整数转换为数字字符串。然后绑定该数字字符串,它应该可以工作。
Here is one way:
I don't know which particular interface you are using, but you can probably convert the GMP (or whatever you use) integer into a numeric string. Then bind that numeric string and it should work.