abstract:header('Content-type:text/html;charset=utf-8');//配置您申請(qǐng)的appkey$appkey = "*********************";//************1.根據(jù)IP/域名查詢地址************$url = "http://apis.juhe.cn/ip/ip2addr"
header('Content-type:text/html;charset=utf-8');
//配置您申請(qǐng)的appkey
$appkey = "*********************";
//************1.根據(jù)IP/域名查詢地址************
$url = "http://apis.juhe.cn/ip/ip2addr";
$params = array(
"ip" => "",//需要查詢的IP地址或域名
"key" => $appkey,//應(yīng)用APPKEY(應(yīng)用詳細(xì)頁(yè)查詢)
"dtype" => "",//返回?cái)?shù)據(jù)的格式,xml或json,默認(rèn)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 "請(qǐng)求失敗";
}
//**************************************************
/**
* 請(qǐng)求接口返回內(nèi)容
* @param string $url [請(qǐng)求的URL地址]
* @param string $params [請(qǐng)求的參數(shù)]
* @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;
}
Correcting teacher:天蓬老師Correction time:2019-09-01 22:13:05
Teacher's summary:函數(shù)的命名推薦全部使用小寫, 多個(gè)單詞之間使用連接線juhecurl, 用連接會(huì)更易讀