如何在 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
这篇关于如何在 PHP 中有一个 64 位整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!