Magento 2.0, Magento 1.x, php, css, js, linux & other stuff
/** * Return true if $a equals to $b * * @param float $a * @param float $b * * @return bool */ function isEqualFloat($a, $b) { $epsilon = 0.00001; if (abs($a - $b) < $epsilon) { return true; } return false; }
No comments:
Post a Comment