Skip to content

Instantly share code, notes, and snippets.

@psdtohtml5
Created July 30, 2013 17:19
Show Gist options
  • Save psdtohtml5/6114930 to your computer and use it in GitHub Desktop.
Save psdtohtml5/6114930 to your computer and use it in GitHub Desktop.
PHP : Extract image source from HTML
$doc = new DOMDocument();
$doc->loadHTML($html);
$tags = $doc->getElementsByTagName('img');
foreach ($tags as $tag) {
echo $tag->getAttribute('src');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment