博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
floor舍去法取整
阅读量:5371 次
发布时间:2019-06-15

本文共 183 字,大约阅读时间需要 1 分钟。

$int = 0.99999999999999999;echo floor($int); // returns 1$int = 0.9999999999999999;echo floor($int); // returns 0

使用要慎重,详情见php.net

转载于:https://www.cnblogs.com/walter371/p/4183493.html

你可能感兴趣的文章
python使用pickle,json等序列化dict
查看>>
php进行文件的强制下载
查看>>
每日python(6)
查看>>
Python正则表达式中的re.S的作用
查看>>
ubuntu15.10运行android studio出错unable to run mksdcard sdk tool
查看>>
HashMap面试知多少
查看>>
Effective C# 学习笔记(二十七)使你的类型可被序列化
查看>>
LDAP客户端配置
查看>>
(转)NAT原理与NAT穿越
查看>>
13.内存原理
查看>>
24.函数信号机制(本质上就是函数指针)
查看>>
The dependency `xxx` is not used in any concrete target.
查看>>
Bootstrap 中 下拉菜单和滚动监听插件(十一)(持续更新中。。。)
查看>>
团队-科学计算器-项目总结
查看>>
python 发邮件
查看>>
[Codeforces Round #247 (Div. 2)] A. Black Square
查看>>
[HDU] 1285 确定比赛名次(拓扑排序)
查看>>
UML第四次作业:绘制活动图
查看>>
GOOGLE API - 翻译, 后台c# 调用前台js代码, asp.net后台调用js代码
查看>>
JVM内存的设置
查看>>