php获取域名的google收录示例

Lamaara ·
更新时间:2024-11-13
· 914 次阅读

代码如下:
function get_index($domain){
$url="http://www.google.com/search?source=hp&biw=1440&bih=762&q=site%3A$domain&aq=f&aqi=g10&aql=&oq=";
$html=file_get_contents($url);
preg_match('/<div id=resultStats>[\S\s].*<nobr>/Ui', $html,$index);
for($i=0;$i<=strlen($index['0']);$i++){
if(is_numeric($index['0'][$i])){
$count.=$index['0'][$i];
}
}
return $count;
}
您可能感兴趣的文章:php检查页面是否被百度收录php获取百度收录、百度热词及百度快照的方法php实现检查文章是否被百度收录php使用curl检测网页是否被百度收录的示例分享php检测网页是否被百度收录的函数代码php中通过curl检测页面是否被百度收录php实现查询百度google收录情况(示例代码)php 批量查询搜狗sogou代码分享Ping服务的php实现方法,让网站快速被收录PHP简单获取网站百度搜索和搜狗搜索收录量的方法



google 示例 域名 PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号