PHP中的float类型使用说明_PHP教程
程序员文章站
2024-01-07 12:50:40
...
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.
不翻译了。呵呵
复制代码 代码如下:
$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中的float类型使用说明_PHP教程
-
PHP5中使用PDO连接数据库的方法_PHP教程
-
HTML中嵌入PHP的简单方法,html嵌入php_PHP教程
-
四种php中webservice实现的简单架构方法及实例,phpwebservice_PHP教程
-
PHP中header和session_start前不能有输出的原因_PHP教程
-
php中++i 与 i++ 的区别比较_PHP教程
-
php目录操作函数之获取目录与文件的类型_PHP教程
-
PHP编程中foreach、while的性能比较_PHP教程
-
PHP中3种生成XML文件方法的速度效率比较_PHP教程
-
php中header设置常见文件类型的content-type