有一段时间我使用该功能file_get_contents
从网站获取 html 数据。但今天没有,看看我为什么使用:
$html = @file_get_contents('http://www.thewebsite.com/');
if(!$html)
exit( "Oops. 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 我试过另一个网站,这工作正常