百度搜索网站收录查询PHP代码
<?php
function baidu($url){
$baidu="http://www.baidu.com/s?wd=site%3A".$url;
$site=file_get_contents($baidu);
preg_match("/百度为您找到相关结果约(.*)个/", $site,$count);
$count=str_replace("百度为您找到相关结果约","",$count);
$count=str_replace("个","",$count);
$count=str_replace(",","",$count);
$count=str_replace(" ","",$count);
$count=strip_tags($count[0]);
if($count!="") return $count;
return 0;
}
$site = $_GET['url'];
echo "百度为您找到相关结果约" .baidu($site). "个";
?>
百度搜索网站反链查询PHP代码
<?php
function baidu($url){
$baidu="http://www.baidu.com/s?wd=domain%3A".$url;
$site=file_get_contents($baidu);
preg_match("/百度为您找到相关结果约(.*)个/", $site,$count);
$count=str_replace("百度为您找到相关结果约","",$count);
$count=str_replace("个","",$count);
$count=str_replace(",","",$count);
$count=str_replace(" ","",$count);
$count=strip_tags($count[0]);
if($count!="") return $count;
return 0;
}
$site = $_GET['url'];
echo "百度为您找到相关结果约" .baidu($site). "个";
?>
360搜索网站收录查询PHP代码
<?php
function sogou($url){
$sogou="https://www.so.com/s?q=site%3A".$url;
$site=file_get_contents($sogou);
preg_match("/找到相关结果约(.*)个</", $site,$count);
$count=str_replace("找到相关结果约","",$count);
$count=str_replace("个","",$count);
$count=str_replace(",","",$count);
$count=str_replace(" ","",$count);
$count=strip_tags($count[0]);
if($count!="") return $count;
return 0;
}
$site = $_GET['url'];
echo "360为您找到相关结果约" .sogou($site). "个";
?>
360搜索网站反链查询PHP代码
<?php
function sogou($url){
$sogou="https://www.so.com/s?q=".$url;
$site=file_get_contents($sogou);
preg_match("/找到相关结果约(.*)个/", $site,$count);
$count=str_replace("找到相关结果约","",$count);
$count=str_replace("个","",$count);
$count=str_replace(",","",$count);
$count=str_replace(" ","",$count);
$count=strip_tags($count[0]);
if($count!="") return $count;
return 0;
}
$site = $_GET['url'];
echo "360为您找到相关结果约" .sogou($site). "个";
?>
© 版权声明
本站网络名称:
乐商网络
本站永久网址:
https://ishoud.com
网站侵权说明:
本网站的文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长QQ810066660删除处理。
1 本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
2 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
3 本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新。
1 本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
2 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
3 本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新。
THE END
暂无评论内容