有没有WebBrowser插件的phpQuery替代品?

时间:2011-06-06 11:31:05

标签: php dom html-parsing web-scraping

我讨厌phpQuery的任何(PHP)替代品,它也模仿web浏览器的行为(如phpQuery的WebBrowser插件)。我喜欢phpQuery,但最后一次更新是在2009年5月。 有什么建议吗?

1 个答案:

答案 0 :(得分:2)

您可以尝试PHP Simple HTML DOM Parser。

这些示例来自在线手册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]');