Cet article présente principalement les informations pertinentes de PHP pour obtenir l'exemple de code météo d'une zone spécifiée. Les amis qui en ont besoin peuvent se référer à
PHP pour obtenir la météo. d'une zone spécifiée
Nous utilisons une requête météo lors du développement du site Web. Comme il est basé sur WordPress, il existe de nombreuses restrictions. Créez d'abord un fichier [weather.PHP], puis examinez le code. :
<?php //获取天气 $url = 'http://m.weather.com.cn/data/'; $id = '101181101'; //焦作的代号 $data = file_get_contents($url . $id .'.html'); $obj=json_decode($data); echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
Pour :
$url = 'http://m.weather.com.cn/data/'; $id = '101181101'; //焦作的代号 $data = file_get_contents($url . $id .'.html');
peut être abrégé comme :
$data = file_get_contents('http://m.weather.com.cn/data/101181101.html');
Et pour :
$obj=json_decode($data);
c'est Les données json obtenues sont converties en un objet pour un appel facile
Puis la dernière phrase :
echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
$obj->weatherinfo->city //城市 $obj->weatherinfo->weather1 //今天的天气 $obj->weatherinfo->temp1 //今天的气温
<?php include 'weather.php' ?>