You can use XPath
for this and use getAttribute
.
// Inicia o DOM:
$html = $retorno_do_seu_curl;
$dom = new DOMDocument;
$dom->loadHTML($html);
// Inicia XPath:
$xpath = new DomXPath($dom);
// Encontra todos os '<img>'.
$imagens = $xpath->query('//img');
// Faz um loop para cada imagem obtida:
foreach($imagens as $_imagem){
// Obtem o 'src' da respetiva imagem:
echo '<img src="' . $_imagem->getAttribute('src') . '">';
}
Test this by clicking here.
If you do not want to use XPath
just use getElementsByTagName
then getAttribute
.
$dom = new DOMDocument;
$dom->loadHTML($html);
$imagens = $dom->getElementsByTagName('img');
foreach($imagens as $_imagem){
echo '<img src="' . $_imagem->getAttribute('src') . '">';
}