PHP备案信息查询函数

浏览:2357 发布日期:2013/04/18 分类:功能实现 关键字: 备案信息查询
该代码由炫彩七零(QQ781787584)原创发布,转载请注明。。。。代码内容部分被过滤,请下载附件
<?php
// Author 70
// QQ 781787584
// WebSite http://sysyun.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 ( 'sysyun.com' );
print_r ( $result );

附件 beian.rar ( 723 B 下载:163 次 )

评论( 相关
后面还有条评论,点击查看>>