加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

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

发布时间:2020-12-12 19:54:33 所属栏目:PHP教程 来源:网络整理
导读:div class="codetitle" a style="CURSOR: pointer" data="14088" class="copybut" id="copybut14088" onclick="doCopy('code14088')" 代码如下: div class="codebody" id="code14088" ?php // WebSite http://www.micxp.com function miibeian($domain) { $d

<div class="codetitle"><a style="CURSOR: pointer" data="14088" class="copybut" id="copybut14088" onclick="doCopy('code14088')"> 代码如下:<div class="codebody" id="code14088">
<?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 = '

    ';
    $start = strpos ( $html,$flag ) + strlen ( $flag );
    $info = substr ( $html,$start,strpos ( $html,'
' ) - $start ); $info = str_replace ( ' ','',$info );
$info = str_replace ( '
  • 网站名称:

    ',$info );
    $info = str_replace ( '
  • 网站首页地址:

    ',$info );
    $info = str_replace ( '
  • 主办单位名称:

    ',$info );
    $info = str_replace ( '
  • 主办单位性质:

    ',$info );
    $info = str_replace ( '
  • 审核时间:

    ',$info );
    $info = str_replace ( '
  • 网站备案/许可证号:

    ',$info );
    $info = str_replace ( "rn",$info );
    $info = str_replace ( '
  • ',$info );
    $info = trim ( $info );
    $temp = explode ( '',$info );
    return $temp;
    }
    // http://webid.360.cn/complaininfo.php?domain=c3lzeXVuLmNvbQ==
    $result = miibeian ( '52php.cn' );
    print_r ( $result );

    (编辑:李大同)

    【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

      推荐文章
        热点阅读