我有一个 iOS 应用程序,当我在我的网站上写新帖子时,我使用苹果推送通知发送通知,所以有 php 脚本有 ssl 证书,当我发送推送通知时它通常会发送,但在我得到的错误日志中这个错误:
[27-Mar-2013 15:30:44] PHP 致命错误:第 56 行的 /home3/basiphon/public_html/Push.php 中的最大执行时间超过了 30 秒
推送通知(通常)成功发送,但我在错误日志中收到此错误,有时推送通知未发送,我也收到此错误到另一个错误,如下所示:
[27-Mar-2013 05:45:04] PHP 警告:stream_socket_client() [function.stream-socket-client]:SSL:第 56 行 /home3/basiphon/public_html/Push.php 中的连接超时 [3 月 27 日-2013 05:45:04] PHP 警告:stream_socket_client() [function.stream-socket-client]:无法在第 56 行的 /home3/basiphon/public_html/Push.php 中启用加密 [27-Mar-2013 05: 45:04] PHP 警告:stream_socket_client() [function.stream-socket-client]:无法连接到 /home3/basiphon/public_html/Push 中的 ssl://gateway.push.apple.com:2195(未知错误) .php 在第 56 行
请查看我的 push.php 脚本的代码:
`// 打开与 APNS 服务器的连接
$fp = stream_socket_client(
$url, $err,
$errstr, 2, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
{
echo 'Message successfully delivered111' . PHP_EOL;
$query_update="update wp_apns_messages set status='delivered',delivery=NOW() where pid='$pid'";
$res_update=mysql_query($query_update) or die(mysql_error());
}
// Close the connection to the server
fclose($fp);`