$a->b = 7.56704843521;
$a->c = 7.56704843521;
But
$a->b == $a->c
returns false.
How can that be?
Even when doing floatval($a->b) == floatval($a->c)
is false, and it should not be necessary anyway when using type-independent comparison "==" instead of "===".
Full code is
$a->b = 7.56704843521;
$a->c = 7.06704843521+0.5;
Thanks!