我似乎无法弄清楚如何在PHP中总结。 ceil()
将是明显的选择,但我需要round()
提供的第二个参数“precision”的相同功能。这是一个例子:
// Desired result: 6250 echo round(6244.64, -2); // returns 6200 echo round(6244.64, -1); // returns 6240 echo ceil(6244.64) // returns 6245
我需要将数字总是向上舍入,以便我可以根据图表的参数计算相等的除数。
答案 0 :(得分:5)
来自对http://php.net/manual/en/function.ceil.php的评论:
Quick and dirty `ceil` type function with precision capability.
function ceiling($value, $precision = 0) {
return ceil($value * pow(10, $precision)) / pow(10, $precision);
}
答案 1 :(得分:1)
其中一些答案存在浮点运算问题,如this answer所示,它可能会失败。对于所有情况下的防弹解决方案,请使用以下:
/**
* Used to round up based on the decimal place, for example rounding up to the nearest penny
* http://stackoverflow.com/questions/8239600/rounding-up-to-the-second-decimal-place
* @param float $value
* @param integer $precision
* @return number
*/
public function Ceiling($value, $precision = 0) {
$offset = 0.5;
if ($precision !== 0)
$offset /= pow(10, $precision);
$final = round($value + $offset, $precision, PHP_ROUND_HALF_DOWN);
return ($final == -0 ? 0 : $final);
}
/**
* Used to round up based on the decimal place, for example rounding up to the nearest penny
* http://stackoverflow.com/questions/8239600/rounding-up-to-the-second-decimal-place
* @param float $value
* @param integer $precision
* @return number
*/
public function Floor($value, $precision = 0) {
$offset = -0.5;
if ($precision !== 0)
$offset /= pow(10, $precision);
$final = round($value + $offset, $precision, PHP_ROUND_HALF_UP);
return ($final == -0 ? 0 : $final);
}
答案 2 :(得分:0)
你可以除以10,ceil();然后乘以10
答案 3 :(得分:0)
echo 10*ceil($number/10);
答案 4 :(得分:0)
由于版本ceil(pow(10, $precision) * $value) / pow(10, $precision);
在某些情况下失败,例如round_up(2.22,2)给出了here提到的不正确的2.23,所以我将这个string solution for round_down()改编为我们的round_up()问题。这是结果(不包括负精度):
function round_up($value, $precision) {
$value = (float)$value;
$precision = (int)$precision;
if ($precision < 0) {
$precision = 0;
}
$decPointPosition = strpos($value, '.');
if ($decPointPosition === false) {
return $value;
}
$floorValue = (float)substr($value, 0, $decPointPosition + $precision + 1);
$followingDecimals = (int)substr($value, $decPointPosition + $precision + 1);
if ($followingDecimals) {
$ceilValue = $floorValue + pow(10, -$precision); // does this give always right result?
}
else {
$ceilValue = $floorValue;
}
return $ceilValue;
}
我不知道它是防弹的,但至少它消除了上面提到的失败。我没有进行二进制到十进制数学分析,但如果$floorValue + pow(10, 0 - $precision)
有效
总是如预期那样它应该没问题。如果您发现一些失败的案例让我知道 - 我们应该寻找另一种解决方案:)
答案 5 :(得分:-1)
另一种精确的ceil解决方案,没有动力,看起来像是两侧9位数:
$v = 123400100100100101;
$a1 = 444444444.4;
$a2 = .04444444444;
$b1 = 111111111.1;
$b2 = .01111111111;
echo $v . "\n";
for ($i = 0; $i < 18; $i ++) {
$v = $v/10;
for ($j = -9; $j < 10; $j++) {
echo $i . ':' . $j . ":" . round($v
+ round($a1, $j + 1) + round($a2, $j + 1)
- round($a1, $j) - round($a2, $j)
+ round($b1, $j + 1) + round($b2, $j + 1)
- round($b1, $j) - round ($b2, $j),
$j, PHP_ROUND_HALF_DOWN) . "\n";
}
}