QueryList使用jQuery的方式來做采集,擁有豐富的插件。下面來演示QueryList使用PhantomJS插件抓取JS動態(tài)創(chuàng)建的頁面內(nèi)容。
一、安裝
使用Composer安裝:
1.安裝QueryList
composer require jaeger/querylist
GitHub: https://github.com/jae-jae/QueryList
2.安裝PhantomJS插件
composer require jaeger/querylist-phantomjs
GitHub: https://github.com/jae-jae/QueryList-PhantomJS
二、下載PhantomJS二進(jìn)制文件
PhantomJS官網(wǎng):http://phantomjs.org ,下載對應(yīng)平臺的PhantomJS二進(jìn)制文件。
三、插件API
QueryList browser($url,$debug = false,$commandOpt = []):使用瀏覽器打開連接
四、使用
以采集「今日頭條」手機(jī)版為例,「今日頭條」手機(jī)版基于React框架,內(nèi)容是純動態(tài)渲染出來的。
下面演示QueryList的PhantomJs插件用法:
1.安裝插件
use QL\QueryList;
use QL\Ext\PhantomJs;
$ql = QueryList::getInstance();
// 安裝時(shí)需要設(shè)置PhantomJS二進(jìn)制文件路徑
$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs');
//or Custom function name
$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs','browser');
2.Example-1
獲取動態(tài)渲染的HTML:
$html = $ql->browser('https://m.toutiao.com')->getHtml();
print_r($html);
獲取所有p標(biāo)簽文本內(nèi)容:
$data = $ql->browser('https://m.toutiao.com')->find('p')->texts();
print_r($data->all());
輸出:
Array(
[0] => 自拍模式開啟!國慶假期我和國旗合個(gè)影
[1] => 你旅途已開始 他們?nèi)栽谧约旱膷徫簧蠟槟愕募倨诒q{護(hù)航
[2] => 喜極而泣,都教授終于回到地球了! //....)
使用http代理:
// 更多選項(xiàng)可以查看文檔:
http://phantomjs.org/api/command-line.html
$ql->browser('https://m.toutiao.com',true,[
// 使用http代理
'--proxy' => '192.168.1.42:8080', '--proxy-type' => 'http'
])
3.Example-2
自定義一個(gè)復(fù)雜的請求:
$data = $ql->browser(function (\JonnyW\PhantomJs\Http\RequestInterface $r){
$r->setMethod('GET');
$r->setUrl('https://m.toutiao.com');
$r->setTimeout(10000); // 10 seconds
$r->setDelay(3); // 3 seconds
return $r;
})->find('p')->texts();
print_r($data->all());
開啟debug模式,并從本地加載cookie文件:
$data = $ql->browser(function (\JonnyW\PhantomJs\Http\RequestInterface $r){
$r->setMethod('GET');
$r->setUrl('https://m.toutiao.com');
$r->setTimeout(10000); // 10 seconds
$r->setDelay(3); // 3 seconds
return $r;
},true,[
'--cookies-file' => '/path/to/cookies.txt'
])->rules([
'title' => ['p','text'],
'link' => ['a','href']
])->query()->getData();
print_r($data->all());
您可能感興趣的文章:- php+jQuery ajax實(shí)現(xiàn)的實(shí)時(shí)刷新顯示數(shù)據(jù)功能示例
- jquery+ajax實(shí)現(xiàn)上傳圖片并顯示上傳進(jìn)度功能【附php后臺接收】
- PHP結(jié)合jquery ajax實(shí)現(xiàn)上傳多張圖片,并限制圖片大小操作示例
- PHP中使用jQuery+Ajax實(shí)現(xiàn)分頁查詢多功能操作(示例講解)
- 使用PHP+MySql+Ajax+jQuery實(shí)現(xiàn)省市區(qū)三級聯(lián)動功能示例
- php+jQuery實(shí)現(xiàn)的三級導(dǎo)航欄下拉菜單顯示效果
- phpQuery采集網(wǎng)頁實(shí)現(xiàn)代碼實(shí)例