php round to the next whole number

后端 未结 2 1692
鱼传尺愫
鱼传尺愫 2020-12-11 11:20

In PHP, I need to round off a number to the next whole number. For example, in my program, I am using the round as below.

$val = round(count($names)/15);


        
相关标签:
2条回答
  • 2020-12-11 12:05

    How about using ceil()

    http://php.net/manual/en/function.ceil.php

    Then your code becomes:

    $val = ceil(count($names)/15);
    
    0 讨论(0)
  • 2020-12-11 12:20

    Try This:

    $val = round(count($names)/15, PHP_ROUND_HALF_DOWN) + 1;
    
    0 讨论(0)
提交回复
热议问题