Google weather API shows temperature in Fahrenheit.

After watching this post, I was able to convert temperature from F to C.

However, it shows like 17.222222222222° C - 28.888888888889° C, Clear. How can i make it only 17° C-28° C.

Thanks in advance.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 6 down vote accepted
function toCelsius($deg)
{
  return floor(($deg-32)/1.8);
}

You can use floor to return the next lowest integer value by rounding down value if necessary.

link|improve this answer
Yes,It's working.Thanks:-) – Yasir Adnan Dec 10 '11 at 4:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.