我是靠谱客的博主 隐形皮皮虾,最近开发中收集的这篇文章主要介绍php实现的获取网站备案信息查询代码(360),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

<?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 ( 'uoften.com' );  
print_r ( $result );

最后

以上就是隐形皮皮虾为你收集整理的php实现的获取网站备案信息查询代码(360)的全部内容,希望文章能够帮你解决php实现的获取网站备案信息查询代码(360)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(98)

评论列表共有 0 条评论

立即
投稿
返回
顶部