>  기사  >  백엔드 개발  >  PHP에서 우편번호를 쿼리하는 방법

PHP에서 우편번호를 쿼리하는 방법

藏色散人
藏色散人원래의
2022-10-21 17:28:241756검색

PHP에서 우편번호를 쿼리하는 방법: 1. 우편번호 쿼리 인터페이스를 적용합니다. 2. 적용된 앱키를 구성합니다. 3. 앱키를 적용하고 상세 페이지 쿼리를 적용합니다. 4. "function juhecurl($url, $params=false,$ispost =0){...}" 메서드를 사용하여 인터페이스에 콘텐츠를 반환하도록 요청합니다.

PHP에서 우편번호를 쿼리하는 방법

이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 8.1, Dell G3 컴퓨터.

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에서 우편번호를 쿼리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.