计算整数和浮点数

时间:2017-10-11 08:47:34

标签: floating-point integer calculator

我试图计算一个整数和一个浮点数。听起来很简单吗?

但是当我执行以下代码时:

<?php
$decimals = 2;
$dec_point = ',';
$thousands_sep = '.';

$net_no = 851.12;
$net_no = number_format($net_no,$decimals,$dec_point,$thousands_sep);

$months = 13;

$tot_amount = $months * $net_no;
$tot_amount = 
number_format($tot_amount,$decimals,$dec_point,$thousands_sep);

print $tot_amount;

结果我得到11.063,00,但是我期望11.064,56(13 * 851.12)。

这里出了什么问题?

1 个答案:

答案 0 :(得分:0)

总金额尝试添加number_format((float)$ tot_amount ....)或$ precision