You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

309 lines
9.4 KiB

2 years ago
  1. <p align="center">
  2. <img width="150" src="logo.png" alt="QueryList">
  3. <br>
  4. <br>
  5. </p>
  6. # QueryList 简介
  7. `QueryList`是一套简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。
  8. ## 特性
  9. - 拥有与jQuery完全相同的CSS3 DOM选择器
  10. - 拥有与jQuery完全相同的DOM操作API
  11. - 拥有通用的列表采集方案
  12. - 拥有强大的HTTP请求套件,轻松实现如:模拟登陆、伪造浏览器、HTTP代理等意复杂的网络请求
  13. - 拥有乱码解决方案
  14. - 拥有强大的内容过滤功能,可使用jQuey选择器来过滤内容
  15. - 拥有高度的模块化设计,扩展性强
  16. - 拥有富有表现力的API
  17. - 拥有高质量文档
  18. - 拥有丰富的插件
  19. - 拥有专业的问答社区和交流群
  20. 通过插件可以轻松实现诸如:
  21. - 多线程采集
  22. - 采集JavaScript动态渲染的页面 (PhantomJS/headless WebKit)
  23. - 图片本地化
  24. - 模拟浏览器行为,如:提交Form表单
  25. - 网络爬虫
  26. - .....
  27. ## 环境要求
  28. - PHP >= 7.1
  29. > 如果你的PHP版本还停留在PHP5,或者不会使用Composer,你可以选择使用QueryList3,QueryList3支持php5.3以及手动安装。
  30. QueryList3 文档:http://v3.querylist.cc
  31. ## 安装
  32. 通过Composer安装:
  33. ```
  34. composer require jaeger/querylist
  35. ```
  36. ## 使用
  37. #### 元素操作
  38. - 采集「昵图网」所有图片地址
  39. ```php
  40. QueryList::get('http://www.nipic.com')->find('img')->attrs('src');
  41. ```
  42. - 采集百度搜索结果
  43. ```php
  44. $ql = QueryList::get('http://www.baidu.com/s?wd=QueryList');
  45. $ql->find('title')->text(); // 获取网站标题
  46. $ql->find('meta[name=keywords]')->content; // 获取网站头部关键词
  47. $ql->find('h3>a')->texts(); //获取搜索结果标题列表
  48. $ql->find('h3>a')->attrs('href'); //获取搜索结果链接列表
  49. $ql->find('img')->src; //获取第一张图片的链接地址
  50. $ql->find('img:eq(1)')->src; //获取第二张图片的链接地址
  51. $ql->find('img')->eq(2)->src; //获取第三张图片的链接地址
  52. // 遍历所有图片
  53. $ql->find('img')->map(function($img){
  54. echo $img->alt; //打印图片的alt属性
  55. });
  56. ```
  57. - 更多用法
  58. ```php
  59. $ql->find('#head')->append('<div>追加内容</div>')->find('div')->htmls();
  60. $ql->find('.two')->children('img')->attrs('alt'); //获取class为two元素下的所有img孩子节点
  61. //遍历class为two元素下的所有孩子节点
  62. $data = $ql->find('.two')->children()->map(function ($item){
  63. //用is判断节点类型
  64. if($item->is('a')){
  65. return $item->text();
  66. }elseif($item->is('img'))
  67. {
  68. return $item->alt;
  69. }
  70. });
  71. $ql->find('a')->attr('href', 'newVal')->removeClass('className')->html('newHtml')->...
  72. $ql->find('div > p')->add('div > ul')->filter(':has(a)')->find('p:first')->nextAll()->andSelf()->...
  73. $ql->find('div.old')->replaceWith( $ql->find('div.new')->clone())->appendTo('.trash')->prepend('Deleted')->...
  74. ```
  75. #### 列表采集
  76. 采集百度搜索结果列表的标题和链接:
  77. ```php
  78. $data = QueryList::get('http://www.baidu.com/s?wd=QueryList')
  79. // 设置采集规则
  80. ->rules([
  81. 'title'=>array('h3','text'),
  82. 'link'=>array('h3>a','href')
  83. ])
  84. ->query()->getData();
  85. print_r($data->all());
  86. ```
  87. 采集结果:
  88. ```
  89. Array
  90. (
  91. [0] => Array
  92. (
  93. [title] => QueryList|基于phpQuery的无比强大的PHP采集工具
  94. [link] => http://www.baidu.com/link?url=GU_YbDT2IHk4ns1tjG2I8_vjmH0SCJEAPuuZN
  95. )
  96. [1] => Array
  97. (
  98. [title] => PHP 用QueryList抓取网页内容 - wb145230 - 博客园
  99. [link] => http://www.baidu.com/link?url=zn0DXBnrvIF2ibRVW34KcRVFG1_bCdZvqvwIhUqiXaS
  100. )
  101. [2] => Array
  102. (
  103. [title] => 介绍- QueryList指导文档
  104. [link] => http://www.baidu.com/link?url=pSypvMovqS4v2sWeQo5fDBJ4EoYhXYi0Lxx
  105. )
  106. //...
  107. )
  108. ```
  109. #### 编码转换
  110. ```php
  111. // 输出编码:UTF-8,输入编码:GB2312
  112. QueryList::get('https://top.etao.com')->encoding('UTF-8','GB2312')->find('a')->texts();
  113. // 输出编码:UTF-8,输入编码:自动识别
  114. QueryList::get('https://top.etao.com')->encoding('UTF-8')->find('a')->texts();
  115. ```
  116. #### HTTP网络操作(GuzzleHttp)
  117. - 携带cookie登录新浪微博
  118. ```php
  119. //采集新浪微博需要登录才能访问的页面
  120. $ql = QueryList::get('http://weibo.com','param1=testvalue & params2=somevalue',[
  121. 'headers' => [
  122. //填写从浏览器获取到的cookie
  123. 'Cookie' => 'SINAGLOBAL=546064; wb_cmtLike_2112031=1; wvr=6;....'
  124. ]
  125. ]);
  126. //echo $ql->getHtml();
  127. echo $ql->find('title')->text();
  128. //输出: 我的首页 微博-随时随地发现新鲜事
  129. ```
  130. - 使用Http代理
  131. ```php
  132. $urlParams = ['param1' => 'testvalue','params2' => 'somevalue'];
  133. $opts = [
  134. // 设置http代理
  135. 'proxy' => 'http://222.141.11.17:8118',
  136. //设置超时时间,单位:秒
  137. 'timeout' => 30,
  138. // 伪造http头
  139. 'headers' => [
  140. 'Referer' => 'https://querylist.cc/',
  141. 'User-Agent' => 'testing/1.0',
  142. 'Accept' => 'application/json',
  143. 'X-Foo' => ['Bar', 'Baz'],
  144. 'Cookie' => 'abc=111;xxx=222'
  145. ]
  146. ];
  147. $ql->get('http://httpbin.org/get',$urlParams,$opts);
  148. // echo $ql->getHtml();
  149. ```
  150. - 模拟登录
  151. ```php
  152. // 用post登录
  153. $ql = QueryList::post('http://xxxx.com/login',[
  154. 'username' => 'admin',
  155. 'password' => '123456'
  156. ])->get('http://xxx.com/admin');
  157. //采集需要登录才能访问的页面
  158. $ql->get('http://xxx.com/admin/page');
  159. //echo $ql->getHtml();
  160. ```
  161. #### Form表单操作
  162. 模拟登陆GitHub
  163. ```php
  164. // 获取QueryList实例
  165. $ql = QueryList::getInstance();
  166. //获取到登录表单
  167. $form = $ql->get('https://github.com/login')->find('form');
  168. //填写GitHub用户名和密码
  169. $form->find('input[name=login]')->val('your github username or email');
  170. $form->find('input[name=password]')->val('your github password');
  171. //序列化表单数据
  172. $fromData = $form->serializeArray();
  173. $postData = [];
  174. foreach ($fromData as $item) {
  175. $postData[$item['name']] = $item['value'];
  176. }
  177. //提交登录表单
  178. $actionUrl = 'https://github.com'.$form->attr('action');
  179. $ql->post($actionUrl,$postData);
  180. //判断登录是否成功
  181. // echo $ql->getHtml();
  182. $userName = $ql->find('.header-nav-current-user>.css-truncate-target')->text();
  183. if($userName)
  184. {
  185. echo '登录成功!欢迎你:'.$userName;
  186. }else{
  187. echo '登录失败!';
  188. }
  189. ```
  190. #### Bind功能扩展
  191. 自定义扩展一个`myHttp`方法:
  192. ```php
  193. $ql = QueryList::getInstance();
  194. //绑定一个myHttp方法到QueryList对象
  195. $ql->bind('myHttp',function ($url){
  196. // $this 为当前的QueryList对象
  197. $html = file_get_contents($url);
  198. $this->setHtml($html);
  199. return $this;
  200. });
  201. //然后就可以通过注册的名字来调用
  202. $data = $ql->myHttp('https://toutiao.io')->find('h3 a')->texts();
  203. print_r($data->all());
  204. ```
  205. 或者把实现体封装到class,然后这样绑定:
  206. ```php
  207. $ql->bind('myHttp',function ($url){
  208. return new MyHttp($this,$url);
  209. });
  210. ```
  211. #### 插件使用
  212. - 使用PhantomJS插件采集JavaScript动态渲染的页面:
  213. ```php
  214. // 安装时设置PhantomJS二进制文件路径
  215. $ql = QueryList::use(PhantomJs::class,'/usr/local/bin/phantomjs');
  216. // 采集今日头条手机版
  217. $data = $ql->browser('https://m.toutiao.com')->find('p')->texts();
  218. print_r($data->all());
  219. // 使用HTTP代理
  220. $ql->browser('https://m.toutiao.com',false,[
  221. '--proxy' => '192.168.1.42:8080',
  222. '--proxy-type' => 'http'
  223. ])
  224. ```
  225. - 使用CURL多线程插件,多线程采集GitHub排行榜:
  226. ```php
  227. $ql = QueryList::use(CurlMulti::class);
  228. $ql->curlMulti([
  229. 'https://github.com/trending/php',
  230. 'https://github.com/trending/go',
  231. //.....more urls
  232. ])
  233. // 每个任务成功完成调用此回调
  234. ->success(function (QueryList $ql,CurlMulti $curl,$r){
  235. echo "Current url:{$r['info']['url']} \r\n";
  236. $data = $ql->find('h3 a')->texts();
  237. print_r($data->all());
  238. })
  239. // 每个任务失败回调
  240. ->error(function ($errorInfo,CurlMulti $curl){
  241. echo "Current url:{$errorInfo['info']['url']} \r\n";
  242. print_r($errorInfo['error']);
  243. })
  244. ->start([
  245. // 最大并发数
  246. 'maxThread' => 10,
  247. // 错误重试次数
  248. 'maxTry' => 3,
  249. ]);
  250. ```
  251. ## 插件
  252. - [jae-jae/QueryList-PhantomJS](https://github.com/jae-jae/QueryList-PhantomJS): 使用PhantomJS采集JavaScript动态渲染的页面
  253. - [jae-jae/QueryList-CurlMulti](https://github.com/jae-jae/QueryList-CurlMulti) : Curl多线程采集
  254. - [jae-jae/QueryList-AbsoluteUrl](https://github.com/jae-jae/QueryList-AbsoluteUrl) : 转换URL相对路径到绝对路径
  255. - [jae-jae/QueryList-Rule-Google](https://github.com/jae-jae/QueryList-Rule-Google) : 谷歌搜索引擎
  256. - [jae-jae/QueryList-Rule-Baidu](https://github.com/jae-jae/QueryList-Rule-Baidu) : 百度搜索引擎
  257. 查看更多的QueryList插件和基于QueryList的产品:[QueryList社区力量](https://github.com/jae-jae/QueryList-Community)
  258. ## 贡献
  259. 欢迎为QueryList贡献代码。关于贡献插件可以查看:[QueryList插件贡献说明](https://github.com/jae-jae/QueryList-Community/blob/master/CONTRIBUTING.md)
  260. ## 寻求帮助?
  261. - QueryList主页: [http://querylist.cc](http://querylist.cc/)
  262. - QueryList文档: [http://doc.querylist.cc](http://doc.querylist.cc/)
  263. - QueryList问答:[http://wenda.querylist.cc](http://wenda.querylist.cc/)
  264. - QueryList交流QQ群:123266961 <a target="_blank" href="http://shang.qq.com/wpa/qunwpa?idkey=a1b248ae30b3f711bdab4f799df839300dc7fed54331177035efa0513da027f6"><img border="0" src="http://pub.idqqimg.com/wpa/images/group.png" alt="cafeEX" title="cafeEX"></a>
  265. - GitHub:https://github.com/jae-jae/QueryList
  266. - Git@OSC:http://git.oschina.net/jae/QueryList
  267. ## Author
  268. Jaeger <JaegerCode@gmail.com>
  269. ## Lisence
  270. QueryList is licensed under the license of MIT. See the LICENSE for more details.