对接备案巴巴 上传即能用 接口文件?url=查询域名
<?php
/**
* 网站公安备案信息查询
*/
header("content-type:application/json; charset=utf-8");
$url = $_REQUEST['url'];
if (empty($url)) {
exit(json_encode(['code' => 2, 'msg' => '链接不能为空'],320));
}
$data = curl('https://www.beian88.com/wa/'.$url);
preg_match_all('/<td class=\"view-key\">(.*?)<\/td><td class=\"view-val\">(.*?)<\/td>/',$data,$text);
$a = strip_tags($text[2][0]);
if($a!=''){
$value = array(
'code'=>1,
'msg'=>'获取成功',
'name' => $text[2][0],
'CompanyType' => $text[2][2],
'DoaminType' => $text[2][3],
'OwnerName' => $text[2][4],
'PsLicense' => $text[2][5],
'PsAddress' => $text[2][6],
'time' => $text[2][7]);
}else{
$value = array(
'code'=> 0,
'msg'=>'未公安备案',
'url'=>$url);
}
echo json_encode($value,320);
function curl($url){ //Curl GET
$ch = curl_init(); // Curl 初始化
$timeout = 30; // 超时时间:30s
$ua='Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36';// 伪造抓取 UA
$ip = mt_rand(11, 191) . "." . mt_rand(0, 240) . "." . mt_rand(1, 240) . "." . mt_rand(1, 240);
curl_setopt($ch, CURLOPT_URL, $url);// 设置 Curl 目标
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// Curl 请求有返回的值
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);// 设置抓取超时时间
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// 跟踪重定向
curl_setopt($ch, CURLOPT_REFERER, 'https://www.baidu.com/');//模拟来路
curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-FORWARDED-FOR:'.$ip, 'CLIENT-IP:'.$ip)); //伪造IP
curl_setopt($ch, CURLOPT_USERAGENT, $ua);// 伪造ua
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);// https请求 不验证证书和hosts
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);//强制协议为1.0
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );//强制使用IPV4协议解析域名
$content = curl_exec($ch);
curl_close($ch);// 结束 Curl
return $content;// 函数返回内容
}
Last modification:December 14, 2023
© Allow specification reprint