Why the code's result is that? -3.0531133177192E-16
I think the result should be zero.
$a = floatval('-0.92');
$b = floatval('-0.55');
$c = floatval('1.38');
$d = floatval('0');
$e = floatval('0.09');
$temp=$a+$b+$c+$d+$e;
var_dump($temp);
die();
I'm a php fresher, I'm really confused by this result, So any answer will be appreciated.