天气查询citycode查询接口,sae中也可用
时间:2021-07-01 10:21:17
帮助过:28人阅读
天气查询citycode查询接口,在使用国家气象局天气预报时,会用到的,你懂得。
- function cityCode($cityName){
-
- $url = 'http://someapi.sinaapp.com/citycode/?city='.urlencode($cityName).'&encode=utf-8';
- $cityCode = file_get_contents($url);
- if($cityCode == '' || $cityCode == NULL){
- return NULL;
- }else{
- return $cityCode;
- }
- }
|