这是我正在使用的代码
<?php
$deviceToken = 'my device key'; // not putting in for security
$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');
$payload = json_encode($payload);
$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsPort = 2195;
$apnsCert = 'apns-dev.pem';
$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);
$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);
$apnsMessage = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $deviceToken)) . chr(0) . chr(strlen($payload)) . $payload;
fwrite($apns, $apnsMessage);
socket_close($apns);
fclose($apns);
?>
我得到了这些错误
警告:stream_socket_client() [function.stream-socket-client]: Unable to set private key file `apns-dev.pem' in /home/bryan/sendpush.php on line 14
警告:stream_socket_client() [function.stream-socket-client]:未能在第 14 行的 /home/bryan/sendpush.php 中创建 SSL 句柄
警告:stream_socket_client() [function.stream-socket-client]:无法在第 14 行的 /home/bryan/sendpush.php 中启用加密
警告:stream_socket_client() [function.stream-socket-client]: 无法连接到第 14 行 /home/bryan/sendpush.php 中的 ssl://gateway.sandbox.push.apple.com:2195(未知错误)
警告:fwrite():提供的参数不是第 17 行 /home/bryan/sendpush.php 中的有效流资源
警告:socket_close() 期望参数 1 是资源,布尔值在第 19 行的 /home/bryan/sendpush.php 中给出
警告:fclose():提供的参数不是第 20 行 /home/bryan/sendpush.php 中的有效流资源
实际上我现在把它归结为这些错误
警告:stream_socket_client() [function.stream-socket-client]:SSL 操作失败,代码为 1。OpenSSL 错误消息:错误:14094410:SSL 例程:SSL3_READ_BYTES:sslv3 警报握手失败在 /home/bryan/PushService.php 在线27
警告:stream_socket_client() [function.stream-socket-client]:无法在第 27 行的 /home/bryan/PushService.php 中启用加密
警告:stream_socket_client() [function.stream-socket-client]: 无法在线连接到 /home/bryan/PushService.php 中的 ssl://gateway.sandbox.push.apple.com:2195 (未知错误)