<?php header('Content-Type:text/html;charset=utf-8'); if($_GET['sub']){ $ip = $_GET['ip']; $msg = ''; ipSearch(); } function ipSearch(){ global $ip,$msg; if(!$ip){ $msg = '请至少填写一个ip!'; return; } $arises = substr_count($ip,'.'); $long = ip2long($ip); if($arises != 3 || $long == false || $long== -1){ $msg = '无效ip地址,请重新输入!'; return; } $content = file_get_contents('http://www.ip138.com/ips1388.asp?action=2&ip='.$ip); $content = iconv('gb2312', 'utf-8', $content); $pos = stripos($content, '<li>本站主数据'); if(!$pos){ $msg = '没有查询到!'; return; } $endPos = stripos($content, '</li>', $pos); $jumpLen = strlen('<li>本站主数据:'); $address = substr($content, $pos+$jumpLen, $endPos-$pos-$jumpLen); $msg = $address; return; } ?><!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>test</title> </head> <body> <form method="get"> <input type="text" name="ip" /> <input type="submit" value="search" name="sub" /> </form><br /> <?php echo $msg; ?> </body> </html>
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/webkf/PHP/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索内容
, 地址
, 栏目
, www
, 查询ip归属地
, php查询IP归属
, ip归属地
, 来源
, 归属地查询
IP来源
,以便于您获取更多的相关知识。
时间: 2025-01-31 05:26:19