I'm currently using phpQuery to gather information from a passed in URL. I have things working and I'm able to search through DOM elements to gather all images like so:
//loop through all images on site and grab the ones that:
// - have "http://" in the address
// - are not a sprite
// - are not a loading graphic
foreach(pq('img') as $img){
$imgSrc = pq($img)->attr('src');
if(strstr($imgSrc, 'http://') && !stristr($imgSrc, 'sprite') && !stristr($imgSrc, 'load')){
$sizes = @getimagesize($imgSrc);
if($sizes){
list($width, $height, $type, $attr) = getimagesize($imgSrc);
if($width > 75 && $height > 75 && $width < 700 && $height < 700){
$tempImages[] = $imgSrc;
}
}
}
}
This works well for actual IMG tags on the site, but I would also like to capture any images in javascript arrays, strings, etc. that is in the source code. I'm thinking that maybe I could do a search for ".jpg" and then trace that string back to "http://" (somehow also ignoring images that don't have a "http://")... just not sure how to do that.
I'm able to get all content of all scripts on the page, but how can I find all .jpg images in that string that also contain "http://"? Regex maybe? Any help or suggestions would be much appreciated!
--------------------UPDATE--------------------
I love answering my own questions...
//search through javascript for string images that contain "http:"
foreach(pq('script') as $script){
$scriptContents = pq($script)->html();
//regex string to get images
if(preg_match_all('/http:\/\/(\S+)\.(jpe?g|gif|png)/', $scriptContents, $matches)){
$scriptImages = array_unique($matches[0]);
foreach($scriptImages as $img){
if(!strstr($img, 'small') && !stristr($img, 'thumb') && !stristr($img, 'load')){
$sizes = @getimagesize($img);
if($sizes){
list($width, $height, $type, $attr) = $sizes;
if($width > 120 && $height > 120 && $width < 700 && $height < 700){
$tempImages[] = $img;
}
}
}
}
}
}
print_r($tempImages);
If anybody has some suggestions on how to speed this up, I'd love to hear it!