ceil()这个函数是啥意思?
phpcn_u233
phpcn_u233 2016-12-24 14:22:43
0
2
2210

如题

phpcn_u233
phpcn_u233

reply all(2)
数据分析师

What does the ceil() function mean? -PHP Chinese website Q&A-What does the ceil() function mean? -PHP Chinese website Q&A

Please watch and learn.

阿神

你这样想把  ceil在英文里是天花板的意思  floor在英文里是地板的意思。所以 Math.ceil() 就是对一个数向上取整,Math.floor()就是对一个数向下取整  比如    $a  = 3.76;  $b = Math.ceil($a)    $b = 4  ;     $c = Math.floor($a);  $c = 3;

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template