欧美精品亚洲精品日韩经典,午夜秒播,国产福利精品一区二区,亚洲国产成人精品久久,亚洲免费专区,国产精品国产三级国产a,日韩福利网站

龍巖易富通網(wǎng)絡(luò )科技有限公司

龍巖小程序開(kāi)發(fā),龍巖分銷(xiāo)系統

幾大大型站點(diǎn)分享的IP地址API調用及騰訊API的使用介紹

2015.09.10 | 626閱讀 | 0條評論 | 未命名

騰訊的IP地址API接口地址:http://fw.qq.com/ipaddress 返回的是數據格式為:var IPData = new Array(“114.218.183.139″,””,”江蘇省”,”蘇州市”); 使用JS代碼進(jìn)行調?。? [php] <script language="javascript" type="text/javascript" src="http://fw.qq.com/ipaddress"></script> <script>document.write("你的IP是:"+IPData[0]+",來(lái)自:"+IPData[2]);</script> [/php] 使用PHP解析的方法: [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); ?> [/php] 處理后輸出的是一個(gè)數組。 另: 新浪的IP地址查詢(xún)接口: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地址查詢(xún)接口(默認GBK):http://pv.sohu.com/cityjson 搜狐IP地址查詢(xún)接口(可設置編碼):http://pv.sohu.com/cityjson?ie=utf-8 搜狐另外的IP地址查詢(xún)接口:http://txt.go.sohu.com/ip/soip

贊 (

發(fā)表評論