我讨厌phpQuery的任何(PHP)替代品,它也模仿web浏览器的行为(如phpQuery的WebBrowser插件)。我喜欢phpQuery,但最后一次更新是在2009年5月。 有什么建议吗?
答案 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]');