You can use the XPath
for this and use the 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 don’t want to use the XPath
just use the getElementsByTagName
afterward getAttribute
.
$dom = new DOMDocument;
$dom->loadHTML($html);
$imagens = $dom->getElementsByTagName('img');
foreach($imagens as $_imagem){
echo '<img src="' . $_imagem->getAttribute('src') . '">';
}
Than you. Funciounou!
– vncalmeida