我正在做一些计算,最终得到65.0
or 43.5
。
我需要在这个数字上加一个零,以便我的数字比较有效:
$this->sub_total == $order_sub_total
我已经使用 number_format() 进行了测试:
$total = number_format($total, 2, '.');
但这给了我呃味精:Wrong parameter count for number_format()
我很想这样做:
$total = $total.'0';
但我认为如果数字是35.43
.
那么如何在我的数字上添加一个额外的小数呢?