修改img属性src

发布于 2024-09-12 13:27:22 字数 223 浏览 4 评论 0原文

这是我所拥有的,

<img src="http://some.site.com/v/b/image-name/_thumb_100x100.jpg">

我试图通过将大小替换为 _thumb_200x200.jpg 来修改 src

我尝试了 preg_replace() 但什么也没有。

Here is what I have

<img src="http://some.site.com/v/b/image-name/_thumb_100x100.jpg">

I'm trying to modify the src by replacing the size to _thumb_200x200.jpg

i tried preg_replace() but nothing .

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

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

发布评论

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

评论(2

自找没趣 2024-09-19 13:27:22

假设您在字符串中包含该代码,则可以使用 str_replace:

$str = str_replace('_thumb_100x100.jpg', '_thumb_200x200.jpg', $str);

Assuming you have that code in a string, you can use str_replace:

$str = str_replace('_thumb_100x100.jpg', '_thumb_200x200.jpg', $str);
烟沫凡尘 2024-09-19 13:27:22

以下是如何使用 preg_replace 进行此操作

$src="http://some.site.com/v/b/image-name/_thumb_100x100.jpg";

echo preg_replace('/_thumb_100x100.jpg/','_thumb_200x200.jpg',$src);

Here's how to do it with preg_replace

$src="http://some.site.com/v/b/image-name/_thumb_100x100.jpg";

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