鉴于大家对PHP十分关注,我们编辑小组在此为大家搜集整理了“有道搜索和IP138的IP的API接口(PHP应用)”一文,供大家参考学习
复制代码 代码如下:
<?php
$myip =
有道搜索和IP138的IP的API接口(PHP应用)_网学
有道搜索和IP138的IP的API接口(PHP应用)
浏览:
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: http://www.jb51.net");
}
?>