Home > Backend Development > PHP Tutorial > IP138 IP address query thief implementation code_PHP tutorial

IP138 IP address query thief implementation code_PHP tutorial

WBOY
Release: 2016-07-21 15:40:56
Original
934 people have browsed it

Copy code The code is as follows:

$ip="www.jb51.net"; //$ The ip can be changed to other domain names or ip addresses at will
$source=file_get_contents('http://www.ip138.com/ips.asp?ip='.$ip.'&action=2');
//Regular matching
preg_match_all("/
  • (.*)
  • /isU",$source,$result);
    print_r($result[1]);
    ?>

    Output result:
    XML/HTML code
    Copy code The code is as follows:

    Array
    (
    [0] => Main data of this site: United States
    [1] => Reference data one: United States
    [2] => Reference data 2: Google Inc., Mountain View, California, USA
    )

    www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321294.htmlTechArticleCopy the code as follows: ?Php $ip="www.jb51.net"; //$ip can be arbitrary Change to another domain name or IP address $source=file_get_contents('http://www.ip138.com/ips.asp?ip='.$ip.' //Regular match...
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template