preg_replace :更改所有 标签链接

发布于 2024-10-18 17:42:38 字数 630 浏览 2 评论 0原文

可能的重复:
用于抓取 A 的 href 属性的正则表达式元素

我想更改页面中的所有图像链接,

例如:

<a href="a.jpg"><img src="a.jpg" /></a>

<a href="mylink.html"><img src="a.jpg" /></a>

是我的代码,不能完全工作

$page = preg_replace("!<a.*><img(.*)></a>!Ui",'<a href="'.$link.'">'."<img $1 border=\"0\" >".'</a>',$page);

Possible Duplicate:
Regular expression for grabbing the href attribute of an A element

I wanna change all images link in a page

for example :

<a href="a.jpg"><img src="a.jpg" /></a>

to

<a href="mylink.html"><img src="a.jpg" /></a>

this is my code and not fully work

$page = preg_replace("!<a.*><img(.*)></a>!Ui",'<a href="'.$link.'">'."<img $1 border=\"0\" >".'</a>',$page);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红ご颜醉 2024-10-25 17:42:38

使用正则表达式进行解析不是一个好主意。如果您需要操作 (X)HTML,您应该使用 DOM ,也许还可以使用 XPath。您可以找到示例,了解如何基本使用这些此处

Parsing with Regex is not a good idea. If you need to manipulate (X)HTML, you should go with DOM and maybe XPath. You can find an example on how to basically work with these here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文