Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to get IMG tag code from HTML document?

I need help to make preg_match_all() for every image URL on random page.
As far I do this

preg_match_all('/img[\d\D]+?src\=(\'|\")([\d\D]+?)(\'|\")/i', $page, $matches); 

But won't work for every page. Must match all possible image closed in img src also ones that doesn't look like images. thank you

share|improve this question
Regex is not the right tool here. Have a look at a HTML parser. – Jens Oct 6 '10 at 9:07
Nope, what do you mean ? Can you give me link or something? But will be nice if you help me with the regex - cause It take me lot of time and I want to see it done :) – T1000 Oct 6 '10 at 9:17

marked as duplicate by Gumbo Oct 6 '10 at 9:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

use the html DOM parser -> http://simplehtmldom.sourceforge.net/

all you need to do then is use this code:

// Create DOM from URL or file
$html = file_get_html('http://www.google.com/');

// Find all images
foreach($html->find('img') as $element)
       echo $element->src . '<br>';
share|improve this answer
Thanks, but I really don't need to include all that code at the moment - script is too simple for that, but maybe will be helpful later. – T1000 Oct 6 '10 at 9:28
10x again - that parser is very cewl – T1000 Oct 6 '10 at 11:26
Suggested third party alternatives to SimpleHtmlDom that actually use DOM instead of String Parsing: phpQuery, Zend_Dom, QueryPath and FluentDom. – Gordon Oct 6 '10 at 12:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.