PHP:显示一个数字到2位小数

将PHPstring舍入到2位小数的正确方法是什么?

$number = "520"; // It's a string from a DB $formatted_number = round_to_2dp($number); echo $formatted_number; 

输出是“520.00”;

函数round_to_2dp()定义应该如何?

你可以使用number_format() :

 return number_format((float)$number, 2, '.', ''); 

例:

 $foo = "105"; echo number_format((float)$foo, 2, '.', ''); // Outputs -> 105.00 

这个函数返回一个string

或者,

 $padded = sprintf('%0.2f', $unpadded); // 520 -> 520.00 

使用round() (如果你期望数字只用浮点格式,否则使用number_format()作为Codemwnci给出的答案 ):

 echo round(520.34345,2); // 520.34 echo round(520, 2); // 520 

从手册:

描述:

 float round ( float $val [, int $precision = 0 [, int $mode = PHP_ROUND_HALF_UP ]] ); 

val的四舍五入的值返回到指定的precision (小数点后的位数)。 精度也可以是负数或零(默认)。

示例#1 round()例子

 <?php echo round(3.4); // 3 echo round(3.5); // 4 echo round(3.6); // 4 echo round(3.6, 0); // 4 echo round(1.95583, 2); // 1.96 echo round(1241757, -3); // 1242000 echo round(5.045, 2); // 5.05 echo round(5.055, 2); // 5.06 ?> 

示例#2模式示例

 <?php echo round(9.5, 0, PHP_ROUND_HALF_UP); // 10 echo round(9.5, 0, PHP_ROUND_HALF_DOWN); // 9 echo round(9.5, 0, PHP_ROUND_HALF_EVEN); // 10 echo round(9.5, 0, PHP_ROUND_HALF_ODD); // 9 echo round(8.5, 0, PHP_ROUND_HALF_UP); // 9 echo round(8.5, 0, PHP_ROUND_HALF_DOWN); // 8 echo round(8.5, 0, PHP_ROUND_HALF_EVEN); // 8 echo round(8.5, 0, PHP_ROUND_HALF_ODD); // 9 ?> 

尝试:

 $number = 1234545454; echo $english_format_number = number_format($number, 2); 

输出将是:

 1,234,545,454.00 

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

例如

 echo round(5.045, 2); // 5.05 echo round(5.055, 2); // 5.06 

使用PHP的number_format()函数。

您可以使用php printfsprintf函数:

sprintf示例:

 $num = 2.12; echo sprintf("%.3f",$num); 

你可以运行同样没有echo以及, ex: sprintf("%.3f",$num);

输出:

 2.120 

另外,用printf

 echo printf("%.2f",$num); 

输出:

 2.124 

我做我自己的。

 $decimals = 2; $number = 221.12345; $number = $number * pow(10,$decimals); $number = intval($number); $number = $number / pow(10,$decimals); 

round_to_2dp是一个用户定义的函数,除非你发布该函数的声明,否则不能做任何事情

但是,我的猜测是做这个number_format($number,2);

 $number = sprintf('%0.2f', $numbers); // 520.89898989 -> 520.89 

这会给你2个数字后十进制。

 $retailPrice = 5.989; echo number_format(floor($retailPrice*100)/100,2, '.', ''); 

它将返回5.98,而不是四舍五入数字。

 bcdiv($number, 1, 2) //2 varies for digits after decimal 

这将在小数点后显示两位数字。

优点:如果你想在float值后面显示两个数字而不是int,那么使用这个。

 $twoDecNum = sprintf('%0.2f', round($number, 2)); 

舍入正确舍入数字,sprintf强制舍入到小数点后两位。

解决这个问题的另一个更奇特的方法是使用bcadd() ,其中$ right_operand的0

 $formatted_number = bcadd($number, 0, 2); 

数字不轮

 $double = '21.188624'; echo intval($double).'.'.substr(end(explode('.',$double)),0,2); 

如果你想在整个项目中使用2个十进制数字,你可以定义

 bcscale(2); 

然后下面的函数会产生你想要的结果

 $myvalue=10.165445; echo bcadd(0,$myvalue); //result=10.11 

但是如果你不使用bcscale函数,你需要编写如下的代码来获得你想要的结果

  $myvalue=10.165445; echo bcadd(0,$myvalue,2); //result=10.11 

了解更多

在这里,我得到2小数点后。(点)使用函数..

 function truncate_number( $number, $precision = 2) { // Zero causes issues, and no need to truncate if ( 0 == (int)$number ) { return $number; } // Are we negative? $negative = $number / abs($number); // Cast the number to a positive to solve rounding $number = abs($number); // Calculate precision number for dividing / multiplying $precision = pow(10, $precision); // Run the math, re-applying the negative value to ensure returns correctly negative / positive return floor( $number * $precision ) / $precision * $negative; } 

上述function的结果:

 echo truncate_number(2.56789, 1); // 2.5 echo truncate_number(2.56789); // 2.56 echo truncate_number(2.56789, 3); // 2.567 echo truncate_number(-2.56789, 1); // -2.5 echo truncate_number(-2.56789); // -2.56 echo truncate_number(-2.56789, 3); // -2.567 

新的正确的答案

使用PHP本地函数bcdiv

 echo bcdiv(2.56789, 1, 1); // 2.5 echo bcdiv(2.56789, 1, 2); // 2.56 echo bcdiv(2.56789, 1, 3); // 2.567 echo bcdiv(-2.56789, 1, 1); // -2.5 echo bcdiv(-2.56789, 1, 2); // -2.56 echo bcdiv(-2.56789, 1, 3); // -2.567 

你可以使用PHP的round()函数。

 echo round(3.4); // 3 echo round(3.5); // 4 echo round(3.6); // 4 echo round(3.6, 0); // 4 echo round(1.95583, 2); // 1.96 echo round(1241757, -3); // 1242000 echo round(5.045, 2); // 5.05 echo round(5.055, 2); // 5.06