Contact: aviboots(AT)netvision.net.il
41,457 questions
54,004 answers
573 users
echo count_decimals(12.85723); // 5 function count_decimals($n) { return strlen(substr(strrchr($n, "."), 1)); }