PHP的float类型用法示例
内容摘要
这篇文章主要为大家详细介绍了PHP的float类型用法示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!float类型的表示可以有以下几种:
代
对此感兴趣的朋友,看看idc笔记做的技术笔记!float类型的表示可以有以下几种:
代
文章正文
这篇文章主要为大家详细介绍了PHP的float类型用法示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
float类型的表示可以有以下几种:代码如下:
<?php
$a = 1.234;
$b = 1.2e3;
$c = 7E-10;
?>
使用PHP的float类型需要注意的是:PHP的float类型的精度有点问题。如果需要高精度的数学计算,可以使用php提供的专用的数学函数 arbitrary precision math functions系列和gmp系列函数。还有就是不要试图进行比较float类型的变量。Converting to floatFor 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类型用法示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释