服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - PHP教程 - PHP中的float类型使用说明

PHP中的float类型使用说明

2019-11-05 11:13php教程网 PHP教程

使用PHP的float类型需要注意的是:PHP的float类型的精度有点问题。如果需要高精度的数学计算,可以使用php提供的专用的数学函数 arbitrary precision math functions系列和gmp系列函数。

float类型的表示可以有以下几种: 

复制代码代码如下:


<?php 
$a = 1.234; 
$b = 1.2e3; 
$c = 7E-10; 
?> 


使用PHP的float类型需要注意的是:PHP的float类型的精度有点问题。如果需要高精度的数学计算,可以使用php提供的专用的数学函数 arbitrary precision math functions系列和gmp系列函数。还有就是不要试图进行比较float类型的变量。 

Converting to float 
For information on converting strings to float, see String conversion to numbers. For values of other types, the conversion is performed by converting the value to integer first and then to float. See Converting to integer for more information. As of PHP 5, a notice is thrown if an object is converted to float. 

不翻译了。呵呵

延伸 · 阅读

精彩推荐