当前位置:Gxlcms > PHP教程 > php获取域名的google收录

php获取域名的google收录

时间:2021-07-01 10:21:17 帮助过:21人阅读


  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<=strlen($index['0']);$i++){
  7. if(is_numeric($index['0'][$i])){
  8. $count.=$index['0'][$i];
  9. }
  10. }
  11. return $count;
  12. }

人气教程排行