Php code for obtaining website ICP filing information (360)

Source: Internet
Author: User
Sometimes we need to obtain the website record filing information, so we can use this thief program to obtain the information from 360. The code is as follows:
// WebSite http://www.micxp.com
Function miibeian ($ domain ){
$ Domain = base64_encode ($ domain );
$ Opts = array (
'Http' => array (
'Method' => "GET ",
'Timeout' => 5
)
);
$ Context = stream_context_create ($ opts );
$ Url = 'http: // webid.360.cn/complaininfo.php? Domain = '. $ domain;
$ Html = file_get_contents ($ url, false, $ context );
If (strpos ($ html, 'no website information found ')){
Return false;
}
$ Flag ='
    ';
    $ Start = strpos ($ html, $ flag) + strlen ($ flag );
    $ Info = substr ($ html, $ start, strpos ($ html ,'
')-$ Start );

$ Info = str_replace ('','', $ info );
$ Info = str_replace ('
  • Website name:', '', $ Info );
    $ Info = str_replace ('
  • Home address:', '', $ Info );
    $ Info = str_replace ('
  • Organizer name:', '', $ Info );
    $ Info = str_replace ('
  • Subject nature:', '', $ Info );
    $ Info = str_replace ('
  • Review time:', '', $ Info );
    $ Info = str_replace ('
  • Website filing/License No:', '', $ Info );
    $ Info = str_replace ("\ r \ n", '', $ info );
    $ Info = str_replace ('
  • ', '', $ Info );
    $ Info = trim ($ info );
    $ Temp = explode ('', $ info );
    Return $ temp;
    }
    // Http://webid.360.cn/complaininfo.php? Domain = c3lzeXVuLmNvbQ =
    $ Result = miibeian ('bitscn. com ');
    Print_r ($ result );

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.