程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> IP反查域名PHP源碼

IP反查域名PHP源碼

編輯:關於PHP編程

IP反查域名,現在用的一般是bing的一個IP查詢功能,即IP:222.222.222.222
 
寫成php代碼就變成了
 
<?php  
 
// 調用方法  
$result=getResult("124.205.228.114");  
print_r($result);  
 
function getContent($url){  
    $content=file_get_contents($url);  
    return $content;  
}  
 
function getResult($ip){  
    $pagesize=10;  
    $page=1;  
    $url="http://cn.bing.com/search?q=ip%3A$ip&first=$page";  
    $result=array();  
    do 
    {  
        $url="http://cn.bing.com/search?q=ip%3A$ip&first=$page";  
        $content=getContent($url);  
        $pattern="/<cite>([a-zA-Z0-9\.]*)(?:\/.*)?<\/cite>/isU";  
        preg_match_all($pattern, $content, $matches);  
        $result=array_merge($result,$matches[1]);  
        $nextpage=strpos($content, "下一頁");  
        $page=$page+$pagesize;  
    }while($nextpage);  
      
    $result=array_values(array_unique($result));  
      
    return $result;  
}  
 
?> 
<?php
 
// 調用方法
$result=getResult("124.205.228.114");
print_r($result);
 
function getContent($url){
       $content=file_get_contents($url);
       return $content;
}
 
function getResult($ip){
       $pagesize=10;
       $page=1;
       $url="http://cn.bing.com/search?q=ip%3A$ip&first=$page";
       $result=array();
       do
       {
              $url="http://cn.bing.com/search?q=ip%3A$ip&first=$page";
              $content=getContent($url);
              $pattern="/<cite>([a-zA-Z0-9\.]*)(?:\/.*)?<\/cite>/isU";
              preg_match_all($pattern, $content, $matches);
              $result=array_merge($result,$matches[1]);
              $nextpage=strpos($content, "下一頁");
              $page=$page+$pagesize;
       }while($nextpage);
      
       $result=array_values(array_unique($result));
      
       return $result;
}
 
?>
 
 
摘自 gaohui blog

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved