이 글에서는 특정 지역의 날씨 예제 코드를 얻기 위한 PHP 관련 정보를 주로 소개하고 있습니다. 필요한 친구들은
특정 지역의 날씨 예제 코드를 얻기 위한 PHP
웹사이트 개발 시 날씨 쿼리를 사용하는데, 워드프레스 기반이라 제약이 많습니다. 먼저 [weather.PHP] 파일을 생성한 후 코드를 살펴보세요.<?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;
$url = 'http://m.weather.com.cn/data/'; $id = '101181101'; //焦作的代号 $data = file_get_contents($url . $id .'.html');
$data = file_get_contents('http://m.weather.com.cn/data/101181101.html');
$obj=json_decode($data);
echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
$obj->weatherinfo->city //城市 $obj->weatherinfo->weather1 //今天的天气 $obj->weatherinfo->temp1 //今天的气温
<?php include 'weather.php' ?>
배치
표시해야 하는 위치. 읽어주셔서 감사합니다. 도움이 되기를 바랍니다. 이 사이트를 지원해 주셔서 감사합니다! 특정 지역의 날씨 예제 코드를 가져오는 PHP와 관련된 더 많은 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!