php获取域名的google收录示例
时间:2022-08-22 07:26:48
php获取域名的google收录示例
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;
}
标签:域名,google收录
0
投稿
猜你喜欢
如何在不同版本的SQL Server中存储数据
2009-01-15 13:06:00
python3通过qq邮箱发送邮件以及附件
2023-05-06 12:48:27
使用Python编写提取日志中的中文的脚本的方法
2023-12-14 16:04:44
浅析Vue自定义组件的v-model
2024-04-29 13:10:16
一篇文章带你了解python标准库--random模块
2023-09-18 10:45:34
Mysql中的排序规则utf8_unicode_ci、utf8_general_ci的区别总结
2024-01-13 14:39:02
golang值接收者和指针接收者的区别介绍
2024-04-25 13:20:33
python __init__与 __new__的区别
2022-05-04 01:27:57
python关于excel多个sheet的导入导出方式
2021-03-15 04:40:19
Pycharm远程连接服务器并运行与调试
2021-05-29 04:38:51
Python 将RGB图像转换为Pytho灰度图像的实例
2022-05-26 14:13:08
Python 十大经典排序算法实现详解
2021-10-01 02:55:24
php+mysql查询优化简单实例
2023-07-21 18:36:32
Python代码执行时间测量模块timeit用法解析
2023-06-13 16:14:04
go select编译期的优化处理逻辑使用场景分析
2024-05-25 15:16:43
Python通过len函数返回对象长度
2023-05-05 06:04:12
详解Mysql中的JSON系列操作函数
2024-01-20 02:08:08
vue数据双向绑定的注意点
2024-05-05 09:07:43
详解vue中的computed的this指向问题
2024-04-27 15:46:56
python在控制台输出进度条的方法
2022-01-12 09:27:15