使用SimpleHtmlDom,如何删除和替换特定属性
我目前正在使用 php 使用此 HTML DOM 解析器: http://simplehtmldom.sourceforge.net/
我'我对如何删除和替换所选属性 href="style.css"
感到困惑,我想用 "index/style.css"
替换链接,应该吗仅插入
索引/
或替换整个 html 代码中的整个属性?
I'm currently using this HTML DOM PARSER using php : http://simplehtmldom.sourceforge.net/
I'm confused on how to remove and replace the selected attribute href="style.css"
, I want to replace the link with "index/style.css"
, should I insert only the
index/
or replace the whole attribute from the whole html code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该可以做到:
您还可以使用 PHP 的本机 DOM 库:
This should do it:
You could also use PHP’s native DOM library:
官方手册有几个示例,基本上涵盖了您需要的所有内容:
http://simplehtmldom.sourceforge.net/manual。 htm
如果您对某些特定步骤有疑问,请随时更新您的问题并提供一些代码。
The official manual has several examples that basically cover all you need:
http://simplehtmldom.sourceforge.net/manual.htm
If you have issues with some specific step, feel free to update your question and provide some of your code.