php实现的获取网站备案信息查询代码(360)_PHP教程
程序员文章站
2022-05-21 13:38:37
...
复制代码 代码如下:
// 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, '
$info = str_replace ( ' ', '', $info );
$info = str_replace ( '
$info = str_replace ( '
$info = str_replace ( '
$info = str_replace ( '
$info = str_replace ( '
$info = str_replace ( '
$info = str_replace ( "\r\n", '', $info );
$info = str_replace ( '
$info = trim ( $info );
$temp = explode ( ' ', $info );
return $temp;
}
// http://webid.360.cn/complaininfo.php?domain=c3lzeXVuLmNvbQ==
$result = miibeian ( 'jb51.net' );
print_r ( $result );