Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google 天气 API 以华氏度显示温度。
看完这篇文章后,我能够将温度从 F 转换为 C。
但是,它显示为17.222222222222° C - 28.888888888889° C, Clear. 我怎么能做到呢17° C-28° C。
17.222222222222° C - 28.888888888889° C, Clear
17° C-28° C
提前致谢。
function toCelsius($deg) { return floor(($deg-32)/1.8); }
如有必要,您可以使用floor通过向下舍入来返回下一个最小整数值。