1、手机端则利用下面的代码
第一步:利用百度的api获取当前城市
$getIp=$_SERVER["REMOTE_ADDR"]; $content =file_get_contents("http://api.map.baidu.com/location/ip?ak=6tNCG8mTxXruj6Cmek7heNS5099eDw0F&ip={$getIp}&coor=bd09ll"); $json = json_decode($content); $address['city']=$json->{'content'}->{'address_detail'}->{'city'};
第二步:利用下面代码获取相关天气信息
$data =file_get_contents('http://www.sojson.com/open/api/weather/json.shtml?city=哈尔滨市'); $obj=json_decode($data); $city= $obj->city;//北京 1 $a=$obj->data->forecast; $quality=$obj->data->quality; //空气质量 4 $a1=trim(mb_substr($a[1]->high,2,-1,'utf-8'));//最高气温 3 $b1=trim(mb_substr($a[1]->low,2,-1,'utf-8'));//最低气温 $wendu=$a1."℃"."~".$b1."℃"; $type=$a[1]->type;//天气 2 dump($obj); die;
以上是获取天气的api的详细内容。更多信息请关注PHP中文网其他相关文章!