91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php怎么查詢城市空氣質量

發布時間:2022-10-24 17:03:51 來源:億速云 閱讀:160 作者:iii 欄目:編程語言

本篇內容主要講解“php怎么查詢城市空氣質量”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“php怎么查詢城市空氣質量”吧!

php查詢城市空氣質量的方法:1、開通空氣質量API接口;2、創建php示例文件;3、設置文件編碼為“utf-8”;4、配置申請的appkey;5、請求接口URL;6、通過“$params = ['city' => '...', 'key' => '...'];”方式請求城市空氣質量相關參數信息即可。

php如何查詢城市空氣質量?

1、開通空氣質量API接口:

  • 通過https://www.juhe.cn/docs/api/id/33?s=cpphpcn注冊及開通

接口說明:

  • 支持全國大部分城市空氣質量查詢,可實時查詢空氣質量,小時粒度,實時給出空氣質量AQI指數,并給出空氣質量級別和首要污染物。

  • 有的城市可能沒有監測點實時監測的數據,每1小時更新一次。

2、基于php的空氣質量接口調用示例

php代碼如下:

// 空氣質量調用示例代碼 

header('Content-type:text/html;charset=utf-8');

//配置您申請的appkey

$appkey = "*********************";

//************1.城市空氣質量************

$url = "http://web.juhe.cn:8080/environment/air/cityair";

$params = array(

"city" => "",//城市名稱的中文名稱或拼音,如:上海 或 shanghai

"key" => $appkey,//APP Key

);

$paramstring = http_build_query($params);

$content = juhecurl($url,$paramstring);

$result = json_decode($content,true);

if($result){

if($result['error_code']=='0'){

print_r($result);

}else{

echo $result['error_code'].":".$result['reason'];

}

}else{

echo "請求失敗";

}

//**************************************************

//************2.城市空氣PM2.5指數************

$url = "http://web.juhe.cn:8080/environment/air/pm";

$params = array(

"city" => "",//城市名稱的中文名稱或拼音,如:上海 或 shanghai

"key" => $appkey,//APP Key

);

$paramstring = http_build_query($params);

$content = juhecurl($url,$paramstring);

$result = json_decode($content,true);

if($result){

if($result['error_code']=='0'){

print_r($result);

}else{

echo $result['error_code'].":".$result['reason'];

}

}else{

echo "請求失敗";

}

//**************************************************

//************3.城市空氣質量-城市列表************

$url = "http://web.juhe.cn:8080/environment/air/airCities";

$params = array(

"key" => $appkey,//APP Key

);

$paramstring = http_build_query($params);

$content = juhecurl($url,$paramstring);

$result = json_decode($content,true);

if($result){

if($result['error_code']=='0'){

print_r($result);

}else{

echo $result['error_code'].":".$result['reason'];

}

}else{

echo "請求失敗";

}

//**************************************************

//************4.城市空氣PM2.5指數-城市列表************

$url = "http://web.juhe.cn:8080/environment/air/pmCities";

$params = array(

"key" => $appkey,//APP Key

);

$paramstring = http_build_query($params);

$content = juhecurl($url,$paramstring);

$result = json_decode($content,true);

if($result){

if($result['error_code']=='0'){

print_r($result);

}else{

echo $result['error_code'].":".$result['reason'];

}

}else{

echo "請求失敗";

}

//**************************************************

//************5.城市輻射指數************

$url = "http://web.juhe.cn:8080/environment/air/radia";

$params = array(

"city" => "",//城市名稱的中文拼音,查詢城市為“上海”,則輸入:上海

"num" => "",//查詢頁碼數,不寫默認為第一頁。

"key" => $appkey,//APP Key

);

$paramstring = http_build_query($params);

$content = juhecurl($url,$paramstring);

$result = json_decode($content,true);

if($result){

if($result['error_code']=='0'){

print_r($result);

}else{

echo $result['error_code'].":".$result['reason'];

}

}else{

echo "請求失敗";

}

//**************************************************

/**

* 請求接口返回內容

* @param string $url [請求的URL地址]

* @param string $params [請求的參數]

* @param int $ipost [是否采用POST形式]

* @return string

*/

function juhecurl($url,$params=false,$ispost=0){

$httpInfo = array();

$ch = curl_init();

curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 );

curl_setopt( $ch, CURLOPT_USERAGENT , 'JuheData' );

curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 60 );

curl_setopt( $ch, CURLOPT_TIMEOUT , 60);

curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true );

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

if( $ispost )

{

curl_setopt( $ch , CURLOPT_POST , true );

curl_setopt( $ch , CURLOPT_POSTFIELDS , $params );

curl_setopt( $ch , CURLOPT_URL , $url );

}

else

{

if($params){

curl_setopt( $ch , CURLOPT_URL , $url.'?'.$params );

}else{

curl_setopt( $ch , CURLOPT_URL , $url);

}

}

$response = curl_exec( $ch );

if ($response === FALSE) {

//echo "cURL Error: " . curl_error($ch);

return false;

}

$httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE );

$httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) );

curl_close( $ch );

return $response;

}

到此,相信大家對“php怎么查詢城市空氣質量”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

建平县| 安徽省| 谢通门县| 博乐市| 新平| 斗六市| 瑞丽市| 山丹县| 叶城县| 安西县| 靖安县| 安多县| 郎溪县| 民丰县| 龙江县| 乃东县| 响水县| 红原县| 理塘县| 双城市| 巴青县| 平顺县| 辉南县| 修水县| 襄城县| 淳化县| 喜德县| 乐山市| 平塘县| 龙川县| 衡阳县| 佳木斯市| 隆安县| 炎陵县| 岳普湖县| 视频| 桃园市| 电白县| 屏南县| 察哈| 旬邑县|