I'm trying to grab a few images from a site but have got stumped due to different file extensions...
I have 2 matches in preg_match_all()
if (preg_match_all('~http://foo.com/foo_(.*?).(.*?)~i', $returned_content, $matches)) {
1st is img name and 2nd is img extension and would like to work out what each extension is so I can use it later in the code:
Update, full code:
//cURL function here get_data()
$returned_content = get_data('http://foo.com/page/2');
if (preg_match_all('~http://foo.com/foo_(.*?)\.(.*?)~i', $returned_content, $matches)) {
foreach ($matches[1] as $key) {
$file = 'http://foo.com/foo_' . $key . 'correct extension';// Need to have correct extension here
echo '<img src="' . $file . '" alt="" />';
}
}
.by escaping it thus:\.? – Wiseguy Jun 14 '12 at 19:02