如何将浮点值转换为PHP中的整数? [英] How to convert float value to integer in php?

查看:119
本文介绍了如何将浮点值转换为PHP中的整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在php中将float值(例如:1.0000124668092E + 14)转换为Integer,php.output中的最佳方法是100001246680920

解决方案

你是什么意思转换?




  • 铸造*:(int)$ float intval($ float)

  • 截断: floor($ float)(下)或 ceil($ float)(上)

  • < : round($ float) - 有额外的模式,请参阅 PHP_ROUND_HALF _... 常量


* :铸造有一些机会,float值不能用int(太大或太小),f.ex来表示。在你的情况。


PHP_INT_MAX :这个PHP版本支持的最大整数。通常是int(2147483647)。

但是,您可以使用 BCMath GMP 处理这些大数字的扩展。 (两者都是绑定的,你只需要启用这些扩展)

I want to convert float value (Eg:1.0000124668092E+14) to Integer in php,what is the best method for this in php.output should be "100001246680920"

解决方案

What do you mean by converting?

  • casting*: (int) $float or intval($float)
  • truncating: floor($float) (down) or ceil($float) (up)
  • rounding: round($float) - has additional modes, see PHP_ROUND_HALF_... constants

*: casting has some chance, that float values cannot be represented in int (too big, or too small), f.ex. in your case.

PHP_INT_MAX: The largest integer supported in this build of PHP. Usually int(2147483647).

But, you could use the BCMath, or the GMP extensions for handling these large numbers. (Both are boundled, you only need to enable these extensions)

这篇关于如何将浮点值转换为PHP中的整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆