php 批量查询搜狗sogou代码分享
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-27 09:46:50 浏览: 评论:0
本文给大家分享的是使用php实现批量查询搜狗的实例代码,非常的简单实用,有需要的小伙伴可以参考下。
php 批量查询搜狗sogou的rank,非常不错,主要是使用了php的file_get_contents()方法。
- <?php
- date_default_timezone_set('Asia/Shanghai');
- header('Content-Type: text/html; charset=utf-8');
- @$txt = file_get_contents("list.txt" );
- $arr = explode("\r\n" , trim($txt));
- if(count($txtarr)<0){
- exit('no site');
- }
- foreach($arr as $v){
- $sr=file_get_contents("http://rank.ie.sogou.com/sogourank.php?ur=http%3A%2F%2F{$v}%2F");
- $sr=str_replace('sogourank=','',$sr);
- if($sr>2){
- echo $v."<br />\n";
- }else{
- continue;
- }
- }
以上所述就是本文的全部内容了,希望大家能够喜欢。
Tags: php批量查询
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)