PHP:来自 cURL、HTML 扫描的数据
如何扫描 html 页面中某个 div 内的文本?
How can i scan a html page, for text within a certain div?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何扫描 html 页面中某个 div 内的文本?
How can i scan a html page, for text within a certain div?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
最简单的方法是使用 简单 HTML DOM 解析器
The simplest way to do this would be to use Simple HTML DOM parser
您还可以使用 DOMDocument 类来执行此操作。
用法非常简单:
文档位于此处。
可以找到现实世界使用的示例 这里。
You can also do this using the
DOMDocument
class.Usage is pretty straight-forward:
Documentation is here.
An example of real world usage can be found here.
您可以按照其他人的建议使用内置功能,或者您可以尝试将简单 HTML DOM 解析器实现为一个简单的 PHP 类和一些辅助函数。它支持 CSS 选择器样式的屏幕抓取(例如 jQuery),可以处理无效的 HTML,甚至提供熟悉的界面来操作 DOM。
值得一看 http://simplehtmldom.sourceforge.net/
You could use build in functionality as suggested by others or you could try the Simple HTML DOM Parser is implemented as a simple PHP class and a few helper functions. It supports CSS selector style screen scraping (such as in jQuery), can handle invalid HTML, and even provides a familiar interface to manipulate a DOM.
It's worth to check it out at http://simplehtmldom.sourceforge.net/
preg_match()
来匹配您想要的子字符串或使用 dom/xml。preg_match()
to match the substring you want or use dom/xml.