在laravel使用Crawler組件對HTML進行分析

來源:互聯網
上載者:User
這篇文章主要介紹了在laravel中使用Symfony的Crawler組件分析HTML,需要的朋友可以參考下

Crawler全名是DomCrawler,是Symfony架構的組件。令人髮指的是DomCrawler的沒有中文文檔,Symfony也沒有翻譯該部分,所以使用DomCrawler開發只能一點一點摸索,現將使用過程中的經驗總結。

首先是安裝


composer require symfony/dom-crawlercomposer require symfony/css-selector

css-seelctor 是 css選取器,用css選擇節點時一些函數會用到

手冊裡面使用的例子是


use Symfony\Component\DomCrawler\Crawler;$html = <<<‘HTML‘Hello World!Hello Crawler!HTML;$crawler = new Crawler($html);foreach ($crawler as $domElement){var_dump($domElement->nodeName);}

列印的結果是


string ‘html‘ (length=4)

因為這段html代碼的nodeName就是html,英語不好,開始使用的時候還以為程式錯了。。。

實際使用過程,如果new Crawler($html)會出現亂碼問題,應該是與頁面編碼有關,所以可以採用下面的方式,先初始化crawler,然後添加node


$crawler = new Crawler();$crawler->addHtmlContent($html);

addHtmlContent的第二個參數是charset,預設是utf-8。

其他例子可以參考官方文檔,http://symfony.com/doc/current/components/dom_crawler.html

記錄一下工作中一點點試出來的用法

filterXPath(string $xpath) 方法,按照手冊上的說法,該方法的參數是$xpath,經常用的是p,p等塊。


echo $crawler->filterXPath(‘//body/p‘)->text();echo $crawler->filterXPath(‘//body/p‘)->last()->text();

輸出是第一個和下一個p標籤塊的文本


var_dump($crawler->filterXPath(‘//body‘)->html());

輸出body內的html


foreach ($crawler->filterXPath(‘//body/p‘) as $i => $node) {$c = new Crawler($node);echo $c->filter(‘p‘)->text();}

filterXPath獲得的是DOMElement塊的數組,每個DOMElement塊可以使用新的crawler對象繼續解析


$nodeValues =$crawler->filterXPath(‘//body/p‘)->each(function (Crawler $node, $i) {return $node->text();});

crawler提供了each迴圈,使用閉包函數簡化代碼,不過注意的是,這種寫法$nodeValues得到的是數組,需要進一步處理。

其他用法


echo $crawler->filterXPath(‘//body/p‘)->attr(‘class‘);

可以獲得第一個p標籤對應class屬性的值“message”


$crawler->filterXPath(‘//p[@class="樣式"]‘)->filter(‘a‘)->attr(‘href‘);$crawler->filterXPath(‘//p[@class="樣式"]‘)->filter(‘a>img‘)->extract(array(‘alt‘, ‘href‘))

以上是獲得標籤屬性的一些方法

filter和filterXPath不同,手冊上寫的是css選取器,不太明白,我理解是p這種XPath節點包含的元素,具體情況還需要在實際開發中去嘗試。

總的來說感覺DomCrawler要比simple html dom好用一些,可能是我用的比較淺顯。

上述只是Crawler的準系統,更過用法請查閱symfony手冊關於Crawler部分的函數

http://api.symfony.com/3.2/Symfony/Component/DomCrawler/Crawler.html

Crawler主要問題還是樣本太少,函數手冊裡面沒有使用執行個體,只能在實際使用中去摸索。。。。

symfony關於DomCrawler的文檔,裡面有少數例子

http://symfony.com/doc/current/components/dom_crawler.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.