网站备案信息 php实现的获取网站备案信息查询代码(360)

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

网站备案信息 php实现的获取网站备案信息查询代码(360)

  2021-03-20 我要评论
想了解php实现的获取网站备案信息查询代码(360)的相关内容吗,在本文为您仔细讲解网站备案信息的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:网站备案信息,下面大家一起来学习吧。
复制代码 代码如下:

<?php  
 // 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, '未查询到网站信息' )) {  
        return false;  
    }  
    $flag = '<ul>';  
    $start = strpos ( $html, $flag ) + strlen ( $flag );  
    $info = substr ( $html, $start, strpos ( $html, '</ul>' ) - $start );  

    $info = str_replace ( ' ', '', $info );  
    $info = str_replace ( '<li><strong>网站名称:</strong>', '', $info );  
    $info = str_replace ( '<li><strong>网站首页地址:</strong>', ' ', $info );  
    $info = str_replace ( '<li><strong>主办单位名称:</strong>', ' ', $info );  
    $info = str_replace ( '<li><strong>主办单位性质:</strong>', ' ', $info );  
    $info = str_replace ( '<li><strong>审核时间:</strong>', ' ', $info );  
    $info = str_replace ( '<li><strong>网站备案/许可证号:</strong>', ' ', $info );  
    $info = str_replace ( "\r\n", '', $info );  
    $info = str_replace ( '</li>', '', $info );  
    $info = trim ( $info );  
    $temp = explode ( ' ', $info );  
    return $temp;  
}  
// http://webid.360.cn/complaininfo.php?domain=c3lzeXVuLmNvbQ== 
$result = miibeian ( 'jb51.net' );  
print_r ( $result );

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们