沃梦达 / 编程问答 / php问题 / 正文

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

How can I have a 64-bit integer in PHP?(如何在 PHP 中有一个 64 位整数?)

本文介绍了如何在 PHP 中有一个 64 位整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 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 位整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何在 PHP 中有一个 64 位整数?

基础教程推荐