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 wrote a php code like this

$site="http://www.google.com";
$content = file_get_content($site);
echo $content;

but when I remove "http://" from $site I get this warning

Warning: file_get_contents(www.google.com) [function.file-get-contents]: failed to open stream:

i try ( try and Catch ) but it didn't work .

share|improve this question
Also an interesting approach: stackoverflow.com/questions/6718598/… – Hugo Stieglitz Jun 19 '12 at 13:15

9 Answers

up vote 76 down vote accepted

Step 1: check the return code: if($content === FALSE) { // handle error here... }

Step 2: suppress the warning by putting an @ in front of the file_get_content: $content = @file_get_content($site);

share|improve this answer
11  
Remember to use strict comparison: if ($content === FALSE) .If the file contains "0", then it will trigger a false negative. – Aram Kocharyan Jun 24 '11 at 3:48
Roel, please update your answer by @AramKocharyan 's suggestion. – habeebperwad Aug 29 '12 at 7:34
Hi, this didn't work for me, adding @ still causes E_WARNING to be caught by some global (not mine) error handler, and my script dies before I have a chance to handle the return value. Any ideas? tnx. – sagimann Nov 22 '12 at 6:51
Excellent this is working for me: if ( @file_get_contents($URL) == false){ $ERROR_MSG = "Player not found.. "; print($ERROR_MSG); }else{ $player = json_decode(file_get_contents($URL)); print_r($player); } – Dax Dec 21 '12 at 13:57
Side effect detected: if the file does not exist, the script stops at the @file_get_contents line. – Dax Dec 23 '12 at 13:42

You can also set your error handler as an anonymous function that calls an Exception and use a try / catch on that exception.

set_error_handler(
    create_function(
        '$severity, $message, $file, $line',
        'throw new ErrorException($message, $severity, $severity, $file, $line);'
    )
);

try {
    file_get_contents('www.google.com');
}
catch (Exception $e) {
    echo $e->getMessage();
}

restore_error_handler();

Seems like a lot of code to catch one little error, but if you're using exceptions throughout your app, you would only need to do this once, way at the top (in an included config file, for instance), and it will convert all your errors to Exceptions throughout.

share|improve this answer
4  
In PHP 5.3 this can even be nicer: set_error_handler(function($severity, $message, $file, $line) { throw new ErrorException($message, $severity, $severity, $file, $line); }); – beberlei Jun 8 '11 at 20:04
It's one of the greatest PHP improvements i've seen so far. Thank you enobrev – tomaszs Aug 29 '12 at 10:03

You can prepend an @: $content = @file_get_contents($site);

This will supress any warning - use sparingly!. See Error Control Operators

Edit: When you remove the 'http://' you're no longer looking for a web page, but a file on your disk called "www.google....."

share|improve this answer

Here's how I did it... No need for try-catch block... The best solution is always the simplest... Enjoy!

$content = @file_get_contents("http://www.google.com");
if (strpos($http_response_header[0], "200")) { 
   echo "SUCCESS";
} else { 
   echo "FAILED";
}
share|improve this answer
1  
-1: this works if you get a 404 error or something, but not if you fail to connect to the server at all (e.g. wrong domain name). I think $http_response_header is not updated in that case, since no HTTP response is received. – Nathan Reed Mar 24 at 1:50

One alternative is to suppress the error and also throw an exception which you can catch later. This is especially useful if there are multiple calls to file_get_contents() in your code, since you don't need to suppress and handle all of them manually. Instead, several calls can be made to this function in a single try/catch block.

// Returns the contents of a file
function file_contents($path) {
    $str = @file_get_contents($path);
    if ($str === FALSE) {
        throw new Exception("Cannot access '$path' to read contents.");
    } else {
        return $str;
    }
}

// Example
try {
    file_contents("a");
    file_contents("b");
    file_contents("c");
} catch (Exception $e) {
    // Deal with it.
    echo "Error: " , $e->getMessage();
}
share|improve this answer

My favourite way to do this is fairly simple:

if (!$data = file_get_contents("http://www.google.com")) {
      $error = error_get_last();
      echo "HTTP request failed. Error was: " . $error['message'];
} else {
      echo "Everything went better than expected";
}

I found this after experimenting with the try/catch from @enobrev above, but this allows for less lengthy (and IMO, more readable) code. We simply use error_get_last to get the text of the last error, and file_get_contents returns false on failure, so a simple "if" can catch that.

share|improve this answer

The best thing would be to set your own error and exception handlers which will do something usefull like logging it in a file or emailing critical ones. http://www.php.net/set_error_handler

share|improve this answer

You could use this script

$url = @file_get_contents("http://www.itreb.info");
if ($url) {
    // if url is true execute this 
    echo $url;
} else {
    // if not exceute this 
    echo "connection error";
}
share|improve this answer

Or you can prepend the http:// to links which do not have it.

share|improve this answer
He wants error handling, not a way to solve an example – Artaex Media May 29 '12 at 18:49

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.