php抓取网页连接函数(本文实例讲述PHP实现百度搜索结果页面【相关搜索词】)
优采云 发布时间: 2022-01-06 21:02php抓取网页连接函数(本文实例讲述PHP实现百度搜索结果页面【相关搜索词】)
本文介绍了PHP抓取百度搜索结果页面【相关搜索词】并存入txt文件的实现。分享给大家,供大家参考,如下:
一、百度搜索关键词【脚本之家】
%E8%84%9A%E6%9C%AC%E4%B9%8B%E5%AE%B6&rsv_pq=ab33cfeb000086a2&rsv_t=7c65vT3KzHCNfGYOIn%2FDSS%9A%E6%9C%AC%%BE4 AE%B6"
搜索结果部分源码:
相关搜索
游戏脚本一般去哪里找脚本,怎么写脚本?
脚本之家app手机脚本制作手机脚本完整
Script game maker 游戏脚本*敏*感*词* 脚本精灵
二、抓取并保存到本地
源代码
index.php:
o_String=new StringEx(); } public function getItem($word){ $url = "http://www.baidu.com/s?wd=".$word; // 构造包头,模拟浏览器请求 $header = array ( "Host:www.baidu.com", "Content-Type:application/x-www-form-urlencoded",//post请求 "Connection: keep-alive", 'Referer:http://www.baidu.com', 'User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; BIDUBrowser 2.6)' ); $ch = curl_init (); curl_setopt ( $ch, CURLOPT_URL, $url ); curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); $content = curl_exec ( $ch ); if ($content == FALSE) { echo "error:" . curl_error ( $ch ); } curl_close ( $ch ); //输出结果echo $content; $this->o_String->string=$content; $s_begin=''; $s_end=''; $summary=$this->o_String->getPart($s_begin,$s_end); $s_begin='相关搜索'; $s_end=''; $来源gaodaimacom搞#^代%!码网content=$this->o_String->getPart($s_begin,$s_end); return $content; } public function __destruct(){ unset($this->o_String); } } if($_POST){ $com = new ComBaike(); $q = $_POST['q']; $str = $com->getItem($q); //获取搜索内容 $pat = '/(.*?)/i'; preg_match_all($pat, $str, $m); //print_r($m[4]); 链接文字 $con = implode(",", $m[4]); //生成文件夹 $dates = date("Ymd"); $path="./Search/".$dates."/"; if(!is_dir($path)){ mkdir($path,0777,true); } //生成文件 $file = fopen($path.iconv("UTF-8","GBK",$q).".txt",'w'); if(fwrite($file,$con)){ echo $con; echo ''; }else{ echo ''; } fclose($file); } ?>
cls.StringEx.php:
string=$string; } public function pregGetPart($s_begin,$s_end){ $s_begin==preg_quote($s_begin); $s_begin=str_replace('/','\/',$s_begin); $s_end=preg_quote($s_end); $s_end=str_replace('/','\/',$s_end); $pattern='/'.$s_begin.'(.*?)'.$s_end.'/'; $result=preg_match($pattern,$this->string,$a_match); if(!$result){ return $result; }else{ return isset($a_match[1])?$a_match[1]:''; } } public function strstrGetPart($s_begin,$s_end){ $string=strstr($this->string,$s_begin); $string=strstr($string,$s_end,true); $string=str_replace($s_begin,'',$string); $string=str_replace($s_end,'',$string); return $string; } public function getPart($s_begin,$s_end){ $result=$this->pregGetPart($s_begin,$s_end); if(!$result){ $result=$this->strstrGetPart($s_begin,$s_end); } return $result; } } ?>
更多对PHP相关内容感兴趣的读者可以查看本站专题:《php curl使用总结》、《PHP网络编程技巧总结》、《PHP数组(Array)操作技巧》、《php字符串( string) 使用总结》、《PHP数据结构与算法教程》、《PHP中JSON格式数据操作技巧总结》
希望这篇文章能对你的 PHP 编程有所帮助。