修改img属性src
这是我所拥有的,
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您在字符串中包含该代码,则可以使用 str_replace:
Assuming you have that code in a string, you can use str_replace:
以下是如何使用 preg_replace 进行此操作
Here's how to do it with preg_replace