当前位置:Gxlcms > PHP教程 > 天气查询citycode查询接口,sae中也可用

天气查询citycode查询接口,sae中也可用

时间:2021-07-01 10:21:17 帮助过:28人阅读

天气查询citycode查询接口,在使用国家气象局天气预报时,会用到的,你懂得。




  1. function cityCode($cityName){
  2. $url = 'http://someapi.sinaapp.com/citycode/?city='.urlencode($cityName).'&encode=utf-8';
  3. $cityCode = file_get_contents($url);
  4. if($cityCode == '' || $cityCode == NULL){
  5. return NULL;
  6. }else{
  7. return $cityCode;
  8. }
  9. }

人气教程排行