php如何使用QueryList輕鬆採集js動態渲染頁面?

來源:互聯網
上載者:User
本章給大家介紹php如何使用QueryList輕鬆採集js動態渲染頁面?有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

QueryList使用jQuery的方式來做採集,擁有豐富的外掛程式。下面來示範QueryList使用PhantomJS外掛程式抓取JS動態建立的頁面內容。

一、安裝

使用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二進位檔案

PhantomJS官網:http://phantomjs.org ,下載對應平台的PhantomJS二進位檔案。

三、外掛程式API

QueryList browser($url,$debug = false,$commandOpt = []):使用瀏覽器開啟串連

四、使用

以採集「今日頭條」手機版為例,「今日頭條」手機版基於React架構,內容是純動態渲染出來的。

下面示範QueryList的PhantomJs外掛程式用法:

1.安裝外掛程式

use QL\QueryList;use QL\Ext\PhantomJs;$ql = QueryList::getInstance();// 安裝時需要設定PhantomJS二進位檔案路徑$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs');//or Custom function name$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs','browser');

2.Example-1

擷取動態渲染的HTML:

$html = $ql->browser('https://m.toutiao.com')->getHtml();print_r($html);

擷取所有p標籤常值內容:

$data = $ql->browser('https://m.toutiao.com')->find('p')->texts();print_r($data->all());

輸出:

Array(    [0] => 自拍模式開啟!國慶假期我和國旗合個影    [1] => 你旅途已開始 他們仍在自己的崗位上為你的假期保駕護航    [2] => 喜極而泣,都教授終於回到地球了!    //....)

使用http代理:

// 更多選項可以查看文檔: 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

自訂一個複雜的請求:

$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());
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.