7

我正在研究 APNS(Apple 推送通知服务)。我正在按照教程所说的那样做:

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

$fp = stream_socket_client(
    'ssl://gateway.sandbox.push.apple.com:2195', $err,
    $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

但是在我的服务器上,我必须通过 HTTP 代理连接到互联网,所以这些代码总是出现超时错误。如何使用 ssl 协议为 strem_socket_client 设置 http 代理?

4

1 回答 1

8

最好的方法是设置proxy选项stream_context_create

$ctx = stream_context_create(array(
        'http' => array(
            'proxy' => 'tcp://127.0.0.1:8888',
            )
        )
       );

有关完整的 http 选项,请参阅http://php.net/manual/en/context.http.php。也许您必须设置request_fulluri为true。

于 2012-11-29T23:05:20.600 回答