How can I check whether a float number contains decimals like 2.10, 2.45, 12382.66 and not 2.00 , 12382.00. I want to know if the number is \"round\" or not. How can I do th
PHP solution:
PHP
function hasDecimals($x) { return floatval($x) - intval($x) != 0; }