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 .

link|improve this question

73% accept rate
feedback

8 Answers

up vote 41 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);

link|improve this answer
4  
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
feedback

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....."

link|improve this answer
feedback

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";
}
link|improve this answer
feedback

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.

link|improve this answer
2  
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
feedback

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

link|improve this answer
feedback

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();
}
link|improve this answer
feedback

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

link|improve this answer
feedback
you can 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 eror";


}
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.