我有我的PHP代码,但是这个值增加了20%。它的格式不好,价格友好。 它在小数点后面给出一个3位数而不是2位数。 这是我的代码:
$percentageChange = 20.00;
$sum_total = '1460.46';
//Our original number.
//Get 2.25% of 100.
$numberToAdd = ($sum_total / 100) * $percentageChange;
//Finish it up with some simple addition
$total_price = $sum_total + $numberToAdd;
echo $total_price;

答案 0 :(得分:1)
您需要使用名为number_format
的函数,这样您才能将数字格式化为您想要的数字。
答案 1 :(得分:0)
您可以舍入到2位小数:
$total_price=round($total_price,2);