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 use file_get_contents function to get and show external link on my specific page.

In local everything is OK but my server doesn't support file_get_contents function.

I try to use cURL with this code:

function file_get_contents_curl($url) {
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_URL, $url);

    $data = curl_exec($ch);
    curl_close($ch);

    return $data;
}

 echo file_get_contents_curl('http://google.com');

But return me blank page.

What is wrong?

share|improve this question
2  
what's the curl_error say? – Book Of Zeus Dec 16 '11 at 22:21
2  
your coding is working, maybe curl is not install ? check out in phpinfo() – racar Dec 16 '11 at 22:22
2  
You are doing no error checking and then wondering why no errors show up. That's.... unwise. – Pekka 웃 Dec 16 '11 at 22:23
1  
I suspect that if your hosting provider has disabled fopen wrappers (needed for file_get_contents() to work) then they have not installed curl either. If it's your own server, then enable allow_url_fopen in your PHP config. – Brian Dec 16 '11 at 22:26
1  
in phpinfo cURL support enabled – NuLLeR Dec 16 '11 at 22:34
show 1 more comment

3 Answers

up vote 9 down vote accepted

try this:

function file_get_contents_curl($url) {
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);       

    $data = curl_exec($ch);
    curl_close($ch);

    return $data;
}
share|improve this answer

This should work

function curl_load($url){
    curl_setopt($ch=curl_init(), CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $response = curl_exec($ch);
    curl_close($ch);
    return $response;
}

$url = "http://www.google.com";
echo curl_load($url);
share|improve this answer

A lot of examples could help you here http://www.php.net/manual/en/function.curl-setopt.php

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.