需要有关图像链接的 preg_replace 的帮助(php)
可能的重复:
如何使用 PHP 解析 HTML?
抓取一个元素
我在 href 标签中有一些带有图像的随机文本,如下所示:
<a title="Some title" rel="lightbox" href="http://www.test.com/DSCF0733.jpg"><img class="alignleft size-thumbnail wp-image-504" title="some title" src="http://www.test.com/Dhghjkhjl33-150x150.jpg" alt="description" width="145" height="145" /></a>
我想找到它们全部并放入一个数组中。文本可以包含其他链接,但我们只需要 rel lightbox。 请帮忙!
Possible Duplicate:
How to parse HTML with PHP?
Grabbing the href attribute of an A element
I have some random text with images in a href tag like this:
<a title="Some title" rel="lightbox" href="http://www.test.com/DSCF0733.jpg"><img class="alignleft size-thumbnail wp-image-504" title="some title" src="http://www.test.com/Dhghjkhjl33-150x150.jpg" alt="description" width="145" height="145" /></a>
I want to find them all and put to an array. Text can contain other links, but we need only with rel lightbox.
Please, help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用内置的 DOMDocument(),简单而有效。比正则表达式更安全...
You could use the built in DOMDocument(), simple yet effective & safer then regex...
为了简单起见,使用 phpQuery 或 QueryPath:
但您也可以修改包含的文本或其他属性。 (您的问题的 preg_replace 部分可能需要详细说明。)
For simplicity use phpQuery or QueryPath:
But you can also modify the contained text or other attributes. (The preg_replace part of your question might need elaboration.)