php获取域名的google收录示例_PHP教程
程序员文章站
2022-04-30 19:08:24
...
复制代码 代码如下:
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('/
[\S\s].*/Ui', $html,$index);
for($i=0;$iif(is_numeric($index['0'][$i])){
$count.=$index['0'][$i];
}
}
return $count;
}
for($i=0;$iif(is_numeric($index['0'][$i])){
$count.=$index['0'][$i];
}
}
return $count;
}
上一篇: python中对list去重的几种方法
下一篇: php curl post的简单示例
推荐阅读
-
PHP为表单获取的URL 地址预设 http 字符串函数代码_PHP教程
-
php中的字符编码转换函数用法示例,php示例_PHP教程
-
PHP的Yii框架中YiiBase入口类的扩展写法示例,yiiyiibase_PHP教程
-
php判断正常访问和外部访问的示例_PHP教程
-
PHP使用mysql_fetch_object从查询结果中获取对象集的方法_PHP教程
-
php获取http内容的函数示例
-
php生成数组的使用示例_PHP教程
-
php获取域名的google收录
-
google file system 用PHP获取Google AJAX Search API 数据的代码
-
PHP获取当前页面完整URL的实现代码_PHP教程