file_get_contents() dosen't read data for shor urls Example:

Please help me in handle this. OR Is there any CURL function to handle above links?

link|improve this question

Why did you tag this curl? – erisco May 30 '11 at 5:07
2  
CURLOPT_FOLLOWLOCATION is how you'd handle this with cUrl – Scuzzy May 30 '11 at 5:13
1  
@Rafe I don't believe that is entirely correct. – alex May 30 '11 at 5:14
4  
I think you'll find it does. – alex May 30 '11 at 5:18
2  
Do you have allow_url_fopen on in php.ini? – alex May 30 '11 at 5:22
show 4 more comments
feedback

3 Answers

up vote 6 down vote accepted

This in general works fine. If you find it doesn't do the right thing you can explicitly use a stream context:

$url = "http://bit.ly/d00E2C";
$context = stream_context_create(array('http' => array('max_redirects' => 5)));
$val = file_get_contents($url, false, $context);

should do it. No need to touch CURL for that.

link|improve this answer
I stole your contribution of 'max_redirects'... not sure how I feel about that. Can you merge answers on Stackoverflow? – erisco May 30 '11 at 5:29
Hehe. Give me a vote and we'll call it even. – Femi May 30 '11 at 5:41
This is an odd trade off, but alright. – erisco May 30 '11 at 5:43
Since there is really no merge, my expectation is you get the answer given yours is more complete. Since we can't split the points... – Femi May 30 '11 at 5:54
feedback

On my machine, I cannot replicate your problem; I receive the page as intended. However, should the issue be with the redirect, this may solve your problem.

<?php
$opts = array(
    'http' => array(
        'follow_location' => 1,
        'max_redirects' => 20
    )
);
$context = stream_context_create($opts);
echo file_get_contents('http://wp.me/pbZy8-1WM', false, $context);

I imagine there may be a directive that toggles redirect following, but I have not yet found it. I will edit my answer should I.

link|improve this answer
feedback

What you can do is using curl with CURLOPT_FOLLOWLOCATION set to True:

$ch = curl_init("http://bit.ly/d00E2C");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$result = curl_exec($ch);
curl_close($ch);

echo $result;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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