欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php获取域名的google收录

程序员文章站 2022-04-09 19:32:17
...

  1. function get_index($domain){
  2. $index=array();
  3. $url="http://www.google.com/search?source=hp&biw=1440&bih=762&q=site%3A$domain&aq=f&aqi=g10&aql=&oq=";
  4. $html=file_get_contents($url);
  5. preg_match('/
    [\S\s].*/Ui', $html,$index);
  6. for($i=0;$i if(is_numeric($index['0'][$i])){
  7. $count.=$index['0'][$i];
  8. }
  9. }
  10. return $count;
  11. }
复制代码