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

前端之家收集整理的这篇文章主要介绍了php 批量查询搜狗sogou代码分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

PHP;"> 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."
\n";
}else{
continue;
}
}

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

猜你在找的PHP相关文章