RegEx语法img src附件-如何提取?

时间:2019-03-28 20:31:44

标签: image expression

这是显示在我的网站中的用于查看图像的代码(当前已从外部附加到我的旧网站上。

<img src="https://www.example.com/attachment.php?attachmentid=1345" title="Harvey the bunny" alt="a cute little fluffy bunny" />

我想检索它们,但是我正在使用的表达式当前可以检索所有外部图像(与站点无关)。

    $pattern = '/< *img[^>]*src *= *["\']?([^"\']*)/i'; // find img tags and retrieve src

错误

$pattern = '/<img[^>]*src=["\']([^"\']*)[^"\']*["\'][^>]*>/i';

有人可以帮助我使用正确的表达方式来实现这一目标吗?

0 个答案:

没有答案