I have a strange problem, I try to calculate a basic sum with php, the result must be egal to zero, but php return a strange value :
$test = ((0.37)+(0.31)-(0.68));
echo 'test4 : '.$test;
The result must be "0", but $test
return : "-1.1102230246252E-16"
I realy don't understand why, have you an idea ?
Thanks