The following operation give out the wrong result.
$First = '45.4000';
$Second = '4.6800000000';
$Third = '50.00';
echo ( $First + $Second ) - $Third;
OUTPUT: 0.079999999999998
Expected Output: 0.08
I am looking on how to get the right result, without using number_format/sprintf ...etc.
As this issue is affecting multiple places in my code & have to go over everything & formatting it is a pain.