>  기사  >  백엔드 개발  >  PHP中的float类型使用说明_PHP教程

PHP中的float类型使用说明_PHP教程

WBOY
WBOY원래의
2016-07-21 15:36:06732검색

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

复制代码 代码如下:

$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.

不翻译了。呵呵

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/322193.htmlTechArticlefloat类型的表示可以有以下几种: 复制代码 代码如下: ?php $a = 1.234; $b = 1.2e3; $c = 7E-10; ? 使用PHP的float类型需要注意的是:PHP的float类型的精度...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.