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

Isleta ·
更新时间:2024-11-10
· 762 次阅读

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; } }

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

您可能感兴趣的文章:php检查页面是否被百度收录php获取百度收录、百度热词及百度快照的方法php实现检查文章是否被百度收录php使用curl检测网页是否被百度收录的示例分享php检测网页是否被百度收录的函数代码php中通过curl检测页面是否被百度收录php实现查询百度google收录情况(示例代码)Ping服务的php实现方法,让网站快速被收录php获取域名的google收录示例PHP简单获取网站百度搜索和搜狗搜索收录量的方法



PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号