|
复制代码 代码如下:
<?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.
不翻译了。呵呵
php技术:PHP中的float类型使用说明,转载需保留来源!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。