通过preg_match从<img/>标记获取图片网址

时间:2011-08-26 11:28:48

标签: php

  

可能重复:
  Grabbing the href attribute of an A element

有图片:

<img id="image" src="/dxkxkx.jpg" />

我希望通过preg_match从<img>标记获取其id="image"的图片网址,但是在我的代码失败后,我从输出中得不到任何内容:

<?php
  preg_match('/<img id=\"image\".+src=\"?(.+\.(jpg|jpeg|png))\"?.+>/i', $content, $matches);
  print_r($matches);
?>

请提前帮助,谢谢。

0 个答案:

没有答案