使用 DOM 处理格式不正确的 HTML
我有一个从网站源代码获得的 HTML。我使用 post 方法从我的页面发送数据到网站,响应是源代码。我需要源代码中的一些文本。
该文档格式不正确。所以,我不能使用 DOM,也不能用 DOM 分离标签和数据。 如何分离标签和数据,以及如何获得唯一的数据?
我正在使用 PHP。
谢谢。
I have got a HTML which has obtained from a web site's source code. Im sending data with post method from my page to the web site, and the response is source code. I need some text in the source.
The document is non-well-formed. So, i can not use DOM, and i can not separate tag and data with DOM.
How can i separate tag and data, and how can i get the only data?
I'm using PHP.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了一些关于从 html 源代码获取数据的信息。我在问题中说,我使用 PHP。
我将使用 preg_match_all 函数和正则表达式。希望我能克服;)
感谢所有感兴趣的人;)
I found something about getting data from html source code. I said in question, im using PHP.
I will use preg_match_all function and regular expression. Hopefully, i can overcome ;)
Thx to all who interested ;)