몇 개의 대형 사이트 에서 공유 하 는 IP 주소 API 호출 및 텐 센트 API 사용 소개

텐 센트 의 IP 주소 API 인터페이스 주소:http://fw.qq.com/ipaddress 데이터 형식 은 var IPData = new Array ("114.218.183.139", "강소성", "소주 시") 입 니 다.JS 코드 를 사용 하여 추출:
<script language="javascript" type="text/javascript" src="http://fw.qq.com/ipaddress"></script>

<script>document.write("  IP :"+IPData[0]+",  :"+IPData[2]);</script>

 PHP 로 해석 하 는 방법:
 
 
<?php
function getIpPlace(){
 $ip=file_get_contents("http://fw.qq.com/ipaddress");
 $ip=str_replace('"',' ',$ip);
 $ip2=explode("(",$ip);
 $a=substr($ip2[1],0,-2);
 $b=explode(",",$a);
 return $b;
}
$ip=getIpPlace();
print_r($ip);
?>

 
처리 후 출력 한 것 은 배열 입 니 다.
다른:
시 나 닷 컴 의 IP 주소 조회 인터페이스: http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js
시 나 닷 컴 다 지역 테스트 방법: http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=218.192.3.42
소 후 IP 주소 조회 인터페이스 (기본 GBK): http://pv.sohu.com/cityjson
소 후 IP 주소 조회 인터페이스 (인 코딩 설정 가능): http://pv.sohu.com/cityjson?ie=utf-8
수호 의 다른 IP 주소 조회 인터페이스: http://txt.go.sohu.com/ip/soip
 

좋은 웹페이지 즐겨찾기