0

在 php 中不使用 round() 函数 perfrom the round()

  $a = "123.45785";
  $v = round($a);
  output: 123.46;

它是通过 round 函数完成的,但我想在不使用 round 和 number_format() 函数的情况下获得输出。

4

2 回答 2

1

这是用算术做的一种方法:

function my_round($num, $places = 2) {
  // Multiply to "move" decimals to the integer part                                  
  // (Save one extra digit for rounding)                                              
  $num *= pow(10, $places + 1);
  // Truncate to remove decimal part                                            
  $num = (int) $num;

  // Do rounding based on the last digit                                        
  $lastDigit = $num % 10;
  if ($lastDigit >= 5)
    $num += 10;

  // Remove last digit                                                          
  $num = (int) ($num/10);
  // "Move" decimals in place, and you're done                                  
  $num /= pow(10, $places);
  return $num;
}
于 2012-09-06T07:02:54.747 回答
0

你有sprintf.

$a = "123.45785";
echo sprintf("%01.2f", $a); // output: 123.46
于 2012-09-06T07:06:36.893 回答