Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/06/2014, 12:54
felipeagudelo188
 
Fecha de Ingreso: enero-2011
Mensajes: 47
Antigüedad: 13 años, 10 meses
Puntos: 0
Como buscar datos especificos

hola a todos tengo este código que saca las imágenes de una pagina web cualquiera, la pregunta seria en como especificar al código que solo salgan imagenes en formato jpg y png,

gracias a todos por sus repuestas

$dom = new domDocument;

/*** load the html into the object ***/
$dom->loadHTML(file_get_contents($url));

/*** discard white space ***/
$dom->preserveWhiteSpace = false;


$images = $dom->getElementsByTagName('img');

$images_array = array();


foreach($images as $img)
{

$images_array[] = array(
'src' => $img->getAttribute('src'),
'alt' => $img->getAttribute('alt'),
'width' => $img->getAttribute('width'),
'height' => $img->getAttribute('height'),
);
}

}
print_r ($images_array);