php抓包有什麼好的工具提取抓取的頁面資訊??
回複內容:
php抓包有什麼好的工具提取抓取的頁面資訊??
http://simplehtmldom.sourceforge.net/manual.htm
find('article.newsentry') as $article) { $item['time'] = trim($article->find('time', 0)->plaintext); $item['title'] = trim($article->find('h2.newstitle', 0)->plaintext); $item['content'] = trim($article->find('div.newscontent', 0)->plaintext); $news[] = $item;}print_r($news);
file_get_html耗時只比wget和curl多一點.
simple_html_dom.php進行DOM分析速度也不慢,使用PHP7(PCRE JIT)速度還能成倍提升.
另外還有:
phpQuery - jQuery port to PHP
https://github.com/TobiaszCudnik/phpquery
http://querylist.cc/
Ganon - Fast (HTML DOM) parser written in PHP
https://github.com/Shemahmforash/Ganon
PHP抓包?沒懂...
推薦個抓包的Fiddler
瀏覽器本身內建,如果想抓機器流量找。死耐fao。 音譯,名字忘記了,或者百度搜尋 科來
你是要採集?截取?還是儲存資料流
根據你問題下的評論:
之前表達有誤,我想問的是php抓取頁面後,有什麼好的方式解析dom提取資料?
可以看下這個開源項目
https://github.com/sunra/php-simple-html-dom-parser
jQueryPHP snoopy