Php batch query sogou code sharing
This article will share with you how to use php to query examples of sogou in batches. It is very simple and practical. If you need it, you can refer to it.
Php batch queries the rank of sogou, which is very good. It mainly uses the file_get_contents () method of php.
?
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 ("\ r \ n", trim ($ txt )); If (count ($ txtarr) <0 ){ Exit ('nosite '); } 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; } } |
The above is all the content of this article. I hope you will like it.