如何使用PHP批量执行搜狗Sogou搜索引擎的查询操作?
- 内容介绍
- 文章标签
- 相关推荐
本文共计111个文字,预计阅读时间需要1分钟。
PHP 批量查询搜狗搜索结果,代码示例:
php
php批量查询搜狗sogoublog.ppsql.net/post-1858.html
1.[代码][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("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; } }
本文共计111个文字,预计阅读时间需要1分钟。
PHP 批量查询搜狗搜索结果,代码示例:
php
php批量查询搜狗sogoublog.ppsql.net/post-1858.html
1.[代码][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("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; } }

