2011-06-06 140 views
2

我正在尋找任何(php)phpQuery替代品,它也模仿網絡瀏覽器的行爲(如phpQuery的WebBrowser插件)。我喜歡phpQuery,但它最後更新於2009年5月。 有什麼建議嗎?是否有任何PHPQuery與WebBrowser插件的替代品?

+0

現在最流行的一個天https://github.com/FriendsOfPHP/Goutte – PayteR 2017-07-31 20:07:35

回答

2

你可以試試PHP簡單的HTML DOM解析器。

這些例子來自在線手冊http://simplehtmldom.sourceforge.net/manual.htm

$ret = $html->find('#foo'); 

// Find all element which class=foo 
$ret = $html->find('.foo'); 

// Find all anchors and images 
$ret = $html->find('a, img'); 

// Find all anchors and images with the "title" attribute 
$ret = $html->find('a[title], img[title]'); 
相關問題