使用 PHP 删除 .html 文件的部分
我有一个想要编辑的 HTML 页面。我想删除 .html 文件的某个部分,例如。
<div id="gg">
......
......
</div>
我该怎么做?
I have an HTML page I'd like to edit. I want to remove a certain section of the .html file such as.
<div id="gg">
......
......
</div>
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议使用 PHP 的 DOM 库:
I would recommend using PHP's DOM library:
我没有测试这段代码。
注意:嵌套的 div 会破坏 html 结构。
I not tested this code.
Attention: nested divs break html structure.
您可能会幸运地使用 XML(或 HTML)解析器。 PHP 5 的 这个 看起来真的很容易使用,并提供了一种通过 ID 查找特定元素的机制,然后将其内容设置为空字符串。
You might have some luck using an XML (or HTML) parser. This one for PHP 5 looks really easy to use, and provides a mechanism for finding a particular element by ID and then setting its contents to an empty string.