php怎么自动查网站备案
时间:2022年07月24日
/来源:网络
/编辑:佚名
利用php获取网站备案信息的方法
php代码如下:
<?php
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 ( 'baidu.com' );
print_r ( $result );
php代码如下:
<?php
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 ( 'baidu.com' );
print_r ( $result );
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03