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.

i have this image link below:

http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&ASIN=B008EYEYBA&Format=_SL110_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=mytwitterpage-20 

but if you click it and view it in a browser, the actual url of the image file is this:

http://ecx.images-amazon.com/images/I/418lsVTc0aL._SL110_.jpg

any idea how I can parse the image link above to get the actual jpg file using php?

share|improve this question

3 Answers

up vote 5 down vote accepted
<?php

function get_url($url) {
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    curl_exec($ch);

    if (!curl_errno($ch)) {
        $url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
    }

    curl_close($ch);

    return $url;
}

echo get_url("http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&ASIN=B008EYEYBA&Format=_SL110_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=mytwitterpage-20");

Source

share|improve this answer
awesome, easy and simple to understand, great answer! – Morgan Wilde Nov 23 '12 at 14:11
it works! thanks aykut! – anagnam Nov 23 '12 at 14:15

Use get_headers(), and get the Location: header:

$headers = get_headers($url);
echo $headers['Location'];

Note:

This is the most basic version and it will work as long as there is only 1 redirect. If you run into more complex issues, use @aykut's solution.

share|improve this answer

You could also do something like this :

header('Content-type:image/png');
$file=file_get_contents($url);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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