fork(1) download
  1. <?php
  2.  
  3. $src = <<<EOL
  4. Its really great to <img src="image2.png" /> hear from you "Today is good <img src="http://www.google.com/picture2.png" /> day" Let's listen song together! ---------<img src="images/profile.png" />\\\\\\
  5. EOL;
  6.  
  7. preg_match_all('~src="([^"]+)~', $src, $matches);
  8.  
  9. var_export($matches[1]);
  10.  
Success #stdin #stdout 0s 82944KB
stdin
Standard input is empty
stdout
array (
  0 => 'image2.png',
  1 => 'http://www.google.com/picture2.png',
  2 => 'images/profile.png',
)