程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 批量查詢搜狗sogou代碼分享

php 批量查詢搜狗sogou代碼分享

編輯:關於PHP編程

       本文給大家分享的是使用php實現批量查詢搜狗的實例代碼,非常的簡單實用,有需要的小伙伴可以參考下。

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

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php date_default_timezone_set('Asia/Shanghai'); header('Content-Type: text/html; charset=utf-8');   @$txt = file_get_contents("list.txt" ); $arr = explode("rn" , 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; } }

      以上所述就是本文的全部內容了,希望大家能夠喜歡。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved