Reputation: 1031
It was a while that I use the function file_get_contents
to get html data from a website. but today it dosen't, to see why I've used :
$html = @file_get_contents('http://www.thewebsite.com/');
if(!$html)
exit( "Oops. Error :)" );
And this show me the error message. So perhaps they have prevent somehow the connection.
Please masters how could I force the function to get the contents ?
EDIT :
This give this error :
Warning: file_get_contents(http://www.thewebsite.com/)
[<a href='function.file-get-contents'>function.file-get-contents</a>]:
failed to open stream: HTTP request failed!
PS I've tried another website and this works fine
Upvotes: 0
Views: 1044
Reputation: 2606
According to manual page . A URL can be used as a filename with this function if the fopen wrappers have been enabled. Did you really check if every url return false and gave error. Then obviously you need to check settings.
Upvotes: 0
Reputation: 322
Upvotes: 2