1

我有数字 1543,我想确保找到最接近 1543 的数字,每 100 计数一次。例如:

1527 = 1500

1563 = 1600

12034 = 12000

12081 = 12100

我希望你能理解。

4

3 回答 3

6

使用round()精度值为 的函数-2

round( $number, -2);

键盘毒蛇演示。

于 2013-02-18T11:41:45.727 回答
0

您可以通过将数字除以 100 并使用round函数来做到这一点。

于 2013-02-18T11:41:09.643 回答
0
<?php

    function foo($number, $d)
    {
        return round($number / $d) * $d;
    }

    echo foo(1527, 100) . "\n";
    echo foo(12081, 100) . "\n";

?>
于 2013-02-18T11:42:11.410 回答