在php中提取html页面的内容
有任何方法可以在php中提取从开始并以
结束的
HTML
页面的内容。如果有人可以发布一些示例代码。
There is any way to extract the content of a HTML
page that starts from <body>
and ends with </body>
in php. If there can anyone post some sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该查看
DOMDocument
参考。此示例读取 html 文档,创建
DOMDocument
并获取 body 标记:您还应该查看以下资源:
DOM API 文档
XPATH 语言规范
You should have a look at the
DOMDocument
reference.This example reads a html document, creates a
DOMDocument
and gets the body tag:You should also check out the following resources:
DOM API Documentation
XPATH language specification
尝试 PHP 简单 HTML DOM 解析器
Try PHP Simple HTML DOM Parser
您还可以尝试使用基于
strpos
函数的非 DOM 解决方案:stripos
是strpos
的不区分大小写的版本,strripos 是
strpos
的不区分大小写的“最右边位置”版本。希望对您有帮助!
You can also try to use non-DOM solution based on
strpos
function:stripos
is case insensitive version ofstrpos
,strripos
is case insensitive 'rightmost position' version ofstrpos
.Hope that it will help you!