We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
在 PHP 中,你可以使用 phpQuery
PS 这有点讽刺,我来到这个页面寻找 phpQuery 等效项在Python中:)
In PHP you can use phpQuery
P.S. it's kinda ironic, I came to this page looking for phpQuery equivalent in Python :)
在 PHP 中进行屏幕抓取,您可以使用 Snoopy (http://sourceforge.net/projects/snoopy/) 或简单 HTML DOM 解析器 (http://simplehtmldom.sourceforge.net/)
In PHP for screen scraping you can use Snoopy (http://sourceforge.net/projects/snoopy/) or Simple HTML DOM Parser (http://simplehtmldom.sourceforge.net/)
这是 Ruby nokogiri 的 PHP 端口
Here's a PHP port of Ruby nokogiri
PHP 中最接近 Nokogiri 的是这个。
The closest thing to Nokogiri in PHP is this one.
还有内置的 PHP DOM 库。它们包括 DomDocument 及其用于从字符串解析 html 的 loadHTML() 方法以及 < a href="http://php.net/manual/en/class.domelement.php" rel="nofollow">DomElement 和 DomNode 用于通过对象构建 HTML。
There are also the built in PHP DOM libraries. They include DomDocument with its loadHTML() method for parsing html from a string and DomElement and DomNode for building up HTML via an object.