连接APNS gateway.sandbox.push.apple.com 2195显示空白

时间:2018-06-14 12:55:19

标签: ios iphone apple-push-notifications apns-php

对于IOS APNS,我尝试连接

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

but $fp show blank .how to resolve

1 个答案:

答案 0 :(得分:0)

我知道有些晚了,但是处理$fp的响应和打印可能会为您提供更多详细信息。

if ($this->fp) {
    echo 'Successfully connected to server of APNS';

} else {
    echo "Failed to connect: $err $errstr" . PHP_EOL;
}