PHP中的float类型使用说明
2015-01-24信息快讯网
使用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.
不翻译了。呵呵
php float不四舍五入截取浮点型字符串方法总结
比较详细PHP生成静态页面教程
php中通过正则表达式下载内容中的远程图片的函数代码
PHP三元运算符的结合性介绍
如何用phpmyadmin设置mysql数据库用户的权限
使用PHPMyAdmin修复论坛数据库的图文方法
php中使用parse_url()对网址进行解析的实现代码(parse_url详解)
使用JSON实现数据的跨域传输的php代码
如何使用Linux的Crontab定时执行PHP脚本的方法
php中使用DOM类读取XML文件的实现代码
jQuery EasyUI API 中文文档 - DateBox日期框
Admin generator, filters and I18n
PHP将DateTime对象转化为友好时间显示的实现代码
PHP pathinfo()获得文件的路径、名称等信息说明
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享
PHP中的integer类型使用分析
PHP中的string类型使用说明
PHP中的array数组类型分析说明
ionCube 一款类似zend的PHP加密/解密工具
PHP array 的加法操作代码
PHP IN_ARRAY 函数使用注意事项
php下使用strpos需要注意 === 运算符
Windows下XDebug 手工配置与使用说明
PHP print类函数使用总结
php中static静态变量的使用方法详解
php Static关键字实用方法
Joomla下利用configuration.php存储简单数据
php 提速工具eAccelerator 配置参数详解
php date()日期时间函数详解