如何在 PHP 中有一个 64 位整数?

2022-01-14 00:00:00 integer 64-bit php

如何在 PHP 中获得 64 位整数?

How can I have a 64-bit integer in PHP?

似乎不是配置文件,而是编译时选项,它取决于平台.

It seems like it is not by a config file, but rather it might be a compile-time option, and it depends on the platform.

推荐答案

原生 64 位整数需要 64 位硬件和 64 位版本的 PHP.

Native 64-bit integers require 64-bit hardware AND the 64-bit version of PHP.

在 32 位硬件上:

$ php -r 'echo PHP_INT_MAX;'
2147483647

在 64 位硬件上:

$ php -r 'echo PHP_INT_MAX;'
9223372036854775807

相关文章