这里主要是有一点: 1 Math.ceil(d1) ceil 方法上有这么一段注释:If the argument value is less than zero but greater than -1.0, then the result is negative zero 如果参数小于0且大于-1.0,结果为 -0 1 Math.floor(d1) ceil 和 floor 方法 上都有一句话:If the argument is NaN or an infinity or po…
float ceil(float value)ceil返回不小于value的最小整数,返回值仍是float型 int intval ( mixed value [, int base]) intval用于获取变量的整数值,通过进制转换(默认为十进制),返回变量的整型值 intval返回一个整数,接受2个参数,第一个是数或者包含数的字符串,第二个参数是第一个参数使用的进制,除非第一个参数是字符串,否则第二个参数没有作用,参数中如果有小数,小数部分将被截断 <?phpecho intval(4…
转自http://blog.sina.com.cn/s/blog_48ebd4fb010009c2.html floor:朝负无穷方向舍入 B = floor(A) rounds the elements of A to the nearest integers less than or equal to A. ceil:朝正无穷方向舍入 B = ceil(A) rounds the elements of A to the nearest integers greater than…