gpt4 book ai didi

php - 使用 PHP 向应用程序的所有 iOS 用户发送推送通知

转载 作者:行者123 更新时间:2023-11-29 02:55:39 25 4
gpt4 key购买 nike

我正在使用此 PHP 向我的应用程序的一个用户发送推送通知。一切都很好,但我需要将它发送给所有用户:

$deviceToken = 'DeviceTokenHere';

// Put your private key's passphrase here:
$passphrase = 'Passphrase Here';

// Put your alert message here:
$message = 'There are 2 new requests at the bottom of the list. Please check them out.';

////////////////////////////////////////////////////////////////////////////////

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);

echo 'Connected to APNS' . PHP_EOL;

// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);

// Encode the payload as JSON
$payload = json_encode($body);

// 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 delivered' . PHP_EOL;

// Close the connection to the server
fclose($fp);

我如何修改它以将其发送给所有用户?

最佳答案

for ($deviceToken in $allDevices) {
SendPushToDevice($deviceToken);
}

注意!如果 $allDevices 的计数 > 100,那么你必须每隔一段时间执行一次,否则推送将不会发送。

for ($i = 0; $i < count($allDevices); $i++) {
if ($i > 0 && $i % 100 == 0) {
// your sleep function
} else {
$deviceToken = $allDevices[$i];
SendPushToDevice($deviceToken);
}
}

关于php - 使用 PHP 向应用程序的所有 iOS 用户发送推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23936348/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com