1

我正在尝试通过 HTTPS 获取流的内容,但我必须通过 HTTP 代理。我不想使用 cURL,而是使用带有上下文参数的fopen 。

问题是,我不能让它通过 HTTPS 工作(虽然 HTTP 工作正常)。

不起作用

$stream = stream_context_create(Array("http" => Array("method"  => "GET",
                                                      "timeout" => 20,
                                                      "proxy"   => "tcp://my-proxy:3128",
                                                      'request_fulluri' => True 
                                )));
echo file_get_contents('https://my-stream', false, $context); 

确实有效(cURL):

$url = 'https://my-stream';
$proxy = 'my-proxy:3128';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
$curl_scraped_page = curl_exec($ch);
curl_close($ch);

echo $curl_scraped_page;

有人知道第一段代码有什么问题吗?如果它适用于 cURL,则必须有一种方法使其适用于上下文。我试图将上下文选项更改为一堆没有运气的不同值。

任何帮助将不胜感激 !

谢谢。

4

1 回答 1

7

您没有指定确切的错误消息,请尝试添加ignore_errors => true. 但是,如果您是400 Bad Request从 Apache 获得的,那么您可能遇到的问题是服务器名称指示和主机标头不匹配。还有一个与此相关的 PHP 错误:https ://bugs.php.net/bug.php?id=63519

尝试以下修复,直到解决此错误:

$stream = stream_context_create(array(
    'http' => array(
        'timeout' => 20,
        'proxy' => 'tcp://my-proxy:3128',
        'request_fulluri' => true 
    ),
    'ssl' => array(
        'SNI_enabled' => false // Disable SNI for https over http proxies
    )
));
echo file_get_contents('https://my-stream', false, $context);
于 2013-10-14T14:11:22.747 回答