在 32 位系统上处理 PHP longint

发布于 2024-10-26 05:46:41 字数 83 浏览 4 评论 0原文

我使用的是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

思念绕指尖 2024-11-02 05:46:41

查看 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.

莫多说 2024-11-02 05:46:41

这是一种方法:

谢谢您的回答,但是如果我想在大多数数据库连接提供程序中使用准备语句将 longint 绑定到查询,有什么方法可以做到吗?

我不知道您正在使用哪个特定接口,但您可能可以将 GMP(或您使用的任何内容)整数转换为数字字符串。然后绑定该数字字符串,它应该可以工作。

Here is one way:

Thank you for your answer, but if I want to bind a longint to a query using prepare statement in most of the db connection provider, is there any way to do it?

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文