function floatcmp($f1,$f2,$precision = 10)
{
$e = pow(10,$precision);
$i1 = intval($f1 * $e);
$i2 = intval($f2 * $e);
return ($i1 == $i2);
}
转载于:https://blog.51cto.com/11910656/1839106
function floatcmp($f1,$f2,$precision = 10)
{
$e = pow(10,$precision);
$i1 = intval($f1 * $e);
$i2 = intval($f2 * $e);
return ($i1 == $i2);
}
转载于:https://blog.51cto.com/11910656/1839106