php查詢城市空氣品質的方法:1、開通空氣品質API介面;2、建立php範例檔案;3、設定檔案編碼為「utf-8」;4、設定申請的appkey;5、請求介面URL;6、通過「$params = ['city' => '...', 'key' => '...'];」方式請求城市空氣品質相關引數資訊即可。
php入門到就業線上直播課:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
本教學操作環境:windows7系統、PHP8.1版、Dell G3電腦。
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如何查詢城市空氣品質的詳細內容,更多請關注TW511.COM其它相關文章!