fork download
  1. <?php
  2.  
  3. $html = 'Muita cena aqui pelo meio e com tags<br><img alt="imagem 1" src="imagem1.jpg"/><br/><img alt="imagem 2" src="imagem2.jpg"/><br/>';
  4.  
  5. preg_match('@<img.+src="(.*)".*>@Uims', $html, $matches);
  6.  
  7. echo $matches[1];
Success #stdin #stdout 0.02s 24192KB
stdin
Standard input is empty
stdout
imagem1.jpg