php 正则表达式获取图像
可能的重复:
用于更改所有 img src 属性格式的正则表达式 < /p>
嗨,
我想替换我的内容数据库字段中的图像路径。
我有以下
preg_replace("/src='(?:[^'\/]*\/)*([^']+)'/g","src='newPath/$2'",$content);
工作正常
src="/path/path/image.jpg"
但失败的
src="http://www.mydomain.com/path/path/image.jpg"
任何帮助来绕过这个问题?
Possible Duplicate:
Regex to change format of all img src attributes
Hi,
I want to replace the image path in my content db field.
I have the following
preg_replace("/src='(?:[^'\/]*\/)*([^']+)'/g","src='newPath/$2'",$content);
which is working fine for
src="/path/path/image.jpg"
BUT fails ON
src="http://www.mydomain.com/path/path/image.jpg"
Any help to bypass this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要为此使用正则表达式。使用 HTML 解析器,例如 Simple HTML DOM。
Don't use regular expressions for this. Use a HTML parser like Simple HTML DOM.