Home  >  Q&A  >  body text

ceil()这个函数是啥意思?

如题

phpcn_u233phpcn_u2332829 days ago2164

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:40:26

    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.

    reply
    0
  • 阿神

    阿神2016-12-24 14:22:53

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

    reply
    0
  • Cancelreply