首页 > 开发 > PHP > 正文

php 批量查询搜狗sogou代码分享

2024-05-04 23:35:20
字体:
来源:转载
供稿:网友

本文给大家分享的是使用php实现批量查询搜狗的实例代码,非常的简单实用,有需要的小伙伴可以参考下。

php 批量查询搜狗sogou的rank,非常不错,主要是使用了php的file_get_contents()方法。

 

 
  1. <?php 
  2. date_default_timezone_set('Asia/Shanghai'); 
  3. header('Content-Type: text/html; charset=utf-8'); 
  4.  
  5. @$txt = file_get_contents("list.txt" ); 
  6. $arr = explode("/r/n" , trim($txt)); 
  7.  
  8. if(count($txtarr)<0){ 
  9. exit('no site'); 
  10.  
  11. foreach($arr as $v){ 
  12. $sr=file_get_contents("http://rank.ie.sogou.com/sogourank.php?ur=http%3A%2F%2F{$v}%2F"); 
  13. $sr=str_replace('sogourank=','',$sr); 
  14. if($sr>2){ 
  15. echo $v."<br />/n"
  16. }else
  17. continue;  

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表