有没有办法在PHP中舍入到最接近的50,000?
我已经调查了一下,但是文档并没有提出一种方法来做到这一点,看起来它只是用于向上/向下舍入到最接近的数字。感谢。
答案 0 :(得分:12)
/**
* Round a number up to the nearest multiple of $n.
*
* @param int $int Number to round.
* @param int $n Round to the nearest $n.
*
* @return int
*/
function round_up_to_nearest_n($int, $n) {
return ceil($int / $n) * $n;
}
echo round_up_to_nearest_n(74268, 50000); //Outputs 100000
除以你要反对的数字,进行四舍五入,然后再乘以它。
答案 1 :(得分:3)
这个怎么样:
$number = ceil($value / 50000) * 50000;
答案 2 :(得分:0)
试试这个:
$number = "78921";
$round = round($number / 50000) * 50000;