stream_socket_client通过http代理

时间:2012-07-23 06:55:07

标签: php sockets ssl

我正在研究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代理?

1 个答案:

答案 0 :(得分:7)

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

$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。