您好,登錄后才能下訂單哦!
這篇文章主要講解了“php怎么查詢郵編”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“php怎么查詢郵編”吧!
php查詢郵編的方法:1、申請郵編查詢接口;2、配置申請的appkey;3、應用appkey,并應用詳細頁查詢;4、通過“function juhecurl($url,$params=false,$ispost=0){...}”方式請求接口返回內容即可。
php查詢郵編
郵編查詢接口地址:https://www.juhe.cn/docs/api/id/66?s=cpphpcn
接口說明:全國30多個省市縣的郵編號碼查詢,數據權威準確,數百萬條數據,精確到區、縣、街道。支持按模糊地址、指定區域地址查詢郵編。
代碼示例:
// +----------------------------------------------------------------------
//----------------------------------
// 郵編查詢調用示例代碼 - 聚合數據
// 在線接口文檔:https://www.juhe.cn/docs/api/id/66?s=cpphpcn
//----------------------------------
header('Content-type:text/html;charset=utf-8');
//配置您申請的appkey
$appkey = "*********************";
//************1.郵編查詢地名************
$url = "http://v.juhe.cn/postcode/query";
$params = array(
"postcode" => "",//郵編,如:215001
"key" => $appkey,//應用APPKEY(應用詳細頁查詢)
"page" => "",//頁數,默認1
"pagesize" => "",//每頁返回,默認:20,最大不超過50
"dtype" => "",//返回數據的格式,xml或json,默認json
);
$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.省份城市區域列表************
$url = "http://v.juhe.cn/postcode/pcd";
$params = array(
"key" => $appkey,//應用APPKEY(應用詳細頁查詢)
"dtype" => "",//返回數據的格式,xml或json,默認json
);
$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://v.juhe.cn/postcode/search";
$params = array(
"pid" => "",//省份ID
"cid" => "",//城市ID
"did" => "",//區域ID
"q" => "",//地名關鍵字,如:木瀆
"key" => $appkey,//應用APPKEY(應用詳細頁查詢)
"dtype" => "",//返回數據的格式,xml或json,默認json
);
$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怎么查詢郵編”的內容了,經過本文的學習后,相信大家對php怎么查詢郵編這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。