首页 > Web开发 > 详细

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

时间:2016-02-07 07:57:41      阅读:400      评论:0      收藏:0      [点我收藏+]
复制代码 代码如下:

<?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 );

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

原文:http://www.jb51.net/article/41613.htm

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!