I have a problem with php round function. Rounds function not working correctly:
$value = 562.92578125;
round($value,1); // return 562.9 (correctly)
round($value,2); // return 562.9299999999999 (wrong)
round($value,3); // return 562.926 (correctly)