欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

有道搜索和IP138的IP的API接口(PHP应用)

程序员文章站 2022-06-29 21:30:24
复制代码 代码如下:
复制代码 代码如下:

<?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: //www.jb51.net");
}
?>