35
$html = file_get_contents("https://www.[URL].com"); 
echo $html;

在错误日志中产生这个:

PHP 警告:file_get_contents(https://www.[URL].com) [function.file-get-contents]:打开流失败:HTTP 请求失败!第 13 行 /Applications/MAMP/htdocs/test.php 中的 HTTP/1.1 500 内部服务器错误";

但是,该站点在浏览器中运行良好。

我也尝试过使用 cURL。我在日志文件中没有收到任何错误,但$html现在回显:

“/”应用程序中的服务器错误。
你调用的对象是空的。

...更多调试信息

任何想法如何解决这个问题?

4

2 回答 2

78

试试这个解决方法:

$opts = array('http'=>array('header' => "User-Agent:MyAgent/1.0\r\n"));
$context = stream_context_create($opts);
$header = file_get_contents('https://www.example.com',false,$context);

如果这不起作用,也许您无法从 https 读取?

于 2012-05-09T22:08:37.577 回答
5

我不得不在标题中输入更多数据:

$opts = array('http' => array(
    'method' => "GET",
    'header' => "User-Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0\r\n"
    . "Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n"
    . "Accept-Encoding:gzip, deflate\r\n"
    . "Accept-Language:cs,en-us;q=0.7,en;q=0.3\r\n"
    . "Connection:keep-alive\r\n"
    . "Host:your.domain.com\r\n"
    ));
$context = stream_context_create($opts);
$html = file_get_contents($sap_url, FALSE, $context);
于 2015-05-19T13:05:15.683 回答