有道搜索和IP138的IP的API接口(PHP应用)
编程学习 2021-07-05 09:49www.dzhlxh.cn编程入门
原理就是通过php模拟浏览器获取ip地址归属地,需要的朋友可以参考下
代码如下:
<?php
$myip = $_SERVER["REMOTE_ADDR"];
//ip138 http://wap.ip138.com/ip.asp?ip=www.myolnet.com
//youdao http://www.youdao.com/smartresult-xml/search.s?type=ip&q=ip
$ipinfo=fcontents("http://www.youdao.com/smartresult-xml/search.s?type=ip&q=".$myip);//此代码为有道ip库
if(strpos($ipinfo,'北京') > 0) {
header('HTTP/1.1 301 Moved Permanently');
header("Location: https://www.jb51.net");
}
?>