Actually, because round() returns a float, you might want to make absolutely, positively sure by casting its result to an integer:
$myInteger1=(int)round(($myFloat1 * 10), 0);
$myInteger2=(int)round(($myFloat2 * 10), 0);
if ($myInteger1 == $myInteger2)
{ Do Something Fun }
It's probably not necessary, but it won't hurt.