本系列接口最后的第一张-----备案查询-----附源代码!
大家好!我是暗夜-永恒 接下来的接口 是调用站长管家的!这个接口是PHP!
<?php
$res = @$_GET['name'];
if(strstr($res,"."))
{
$json = file_get_contents('http://icp.chinaz.com/'.$res); //调用的站长工具
function GetBetween($content,$start,$end){
$r = explode($start, $content);
if (isset($r[1])){
$r = explode($end, $r[1]);
return $r[0];
}
return '';
}
// 获取主办单位名称
$b ='主办单位名称</span><p>';
$c ='<';
$name = GetBetween($json,$b,$c);
// 获取性质
$b ='主办单位性质</span><p><strong class="fl fwnone">';
$c ='<';
$nature = GetBetween($json,$b,$c);
// 获取备案号
$b ='网站备案/许可证号</span><p><font>';
$c ='<';
$icp = GetBetween($json,$b,$c);
// 获取网站名称
$b ='网站名称</span><p>';
$c ='<';
$sitename = GetBetween($json,$b,$c);
// 获取网站首页地址
$b ='网站首页网址</span><p class="Wzno">';
$c ='<';
$index = GetBetween($json,$b,$c);
if(strstr($index,"."))
{ }else{
echo "<center>未查到此域名的备案信息!</br></br>Copyright © 2015-2017 mlwei.com All Rights Reserved. 名流互联 版权所有 </center>";
exit();
}
// 获取审核时间
$b ='审核时间</span><p>';
$c ='<';
$time = GetBetween($json,$b,$c);
echo '<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="ICP备案查询网,网站备案号查询系统,网站备案查询系统,域名备案查询,备案信息查询,网站备案查询,工业和信息化部ICP/IP地址信息备案管理系统" />
<meta name="description" content="ICP备案查询网,查询备案信息,网站备案号查询系统,网站备案查询系统,域名备案查询,备案信息查询,网站备案查询,工业和信息化部ICP/IP地址信息备案管理系统" />
<title>网站备案详细信息以及ICP备案号_ICP备案查询网</title>
<body>
<table id="show_table" class="seo" cellpadding="5" cellspacing="0" border="1" bordercolor="#94c6e1" bgcolor="#FFFFFF">
<tbody>
<tr>
<th width="5%">序号</th>
<th>主办单位名称</th>
<th width="11%">主办单位性质</th>
<th width="15%">网站备案/许可证号</th>
<th>网站名称</th>
<th>网站首页网址</th>
<th width="8%">审核时间</th>
<th width="8%">是否限制接入</th>
<th width="8%">详细信息</th></tr>
<tr>
<td>1</td>
<td nowrap="nowrap">
<div id="kind">'. $name.'</div>
</td>
<td nowrap="nowrap">
<div id="kind">'. $nature.'</div>
</td>
<td nowrap="nowrap">'. $icp.'</td>
<td style="word-break:break-all;word-wrap:break-word;">'.$sitename.'</td>
<td>
<div id="home_url"><div><a href="http://'.$index.'" target="_blank" se_prerender_url="complete">'.$index.'</a></div>
</div>
</td>
<td nowrap="nowrap">
<div id="pass_time">'.$time.'</div>
</td>
<td>
<span>否</span>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<center></br></br>Copyright © 2015-2018</center>
</body>
</html>';
}else{
echo "<center>不给我域名查你MMP?</br></br>Copyright © 2015-2018 </center>";
// echo "内容不为空";
// return false;
exit();
}
?>