이 글에서는 특정 지역의 날씨 예제 코드를 얻기 위한 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');
는 축약 가능 as:
$data = file_get_contents('http://m.weather.com.cn/data/101181101.html');
그리고 대상:
$obj=json_decode($data);
It 획득한 json 데이터를 호출하기 쉬운 객체로 변환합니다.
그런 다음 마지막 문장은
echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
입니다. 지정된 데이터를 가져와 특정 형식으로 출력하려면
$obj->weatherinfo->city //城市 $obj->weatherinfo->weather1 //今天的天气 $obj->weatherinfo->temp1 //今天的气温
마지막으로 표시해야 할 위치
그렇군요.
특정 지역의 날씨를 확인하는 PHP 개발 예제 코드를 읽어주셔서 감사합니다. PHP 중국어 웹사이트를 지원해 주시는 모든 분들께 도움이 되기를 바랍니다.