私はiOSアプリを持っています。サイトに新しい投稿を書くときにAppleプッシュ通知を使用して通知を送信したため、ssl証明書を持つphpスクリプトがあります。プッシュ通知を送信すると、通常は配信されますが、エラーログに表示されますこのエラー:
[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 での接続タイムアウト [27-Mar-2013] -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 (未知のエラー) に接続できません56行目の.php
私の 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);`