PHP for iOS推送通知,有时超过1个设备

时间:2014-06-26 05:45:40

标签: ios loops apple-push-notifications devicetoken

我正在构建一个应用程序,我在其中使用NSUserDefaults来存储各种信息,包括用于iOS上的APNS的deviceToken。它当前工作的方式是用户提交请求,并向XML添加一个条目,该XML中的一个元素称为deviceToken。当有人响应该请求时,它会触发页面底部的PHP,以向该特定请求的deviceToken发送推送通知。我的问题是有些人拥有多个设备,将推送通知发送给所有用户的设备会很不错。正如您在下面的代码中看到的,我有2个区域用于deviceTokens。如果XML包含2个设备令牌,那么一切都很棒。问题是,对于只有1个令牌的令牌,它甚至无法提供令牌。我该如何修复这个PHP,以便它能够接受2个deviceTokens,但如果只有1个可用,它仍可以提供?

<?php
$first_name = $_POST['first_name'];
 $last_name = $_POST['last_name'];
 $title = $_POST['title'];
 $deviceToken = $_POST['deviceToken'];
 $deviceToken2 = $_POST['deviceToken2'];
$xml = simplexml_load_file("http://www.URL.xml") or die("Not loaded!\n");

$passphrase = 'passphrase';

// Put your alert message here:
$message = 'Someone just responded to you!';

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

$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;
$msg2 = chr(0) . pack('n', 32) . pack('H*', $deviceToken2) . pack('n', strlen($payload)) . $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
$result = fwrite($fp, $msg2, strlen($msg2));


if (!$result)
    echo 'Message not delivered' . PHP_EOL;
else
    echo 'Message successfully delivered' . PHP_EOL;

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

1 个答案:

答案 0 :(得分:1)

您可以做的是将该函数用作通用函数:即,它接受设备令牌对象。这可以是单个字符串,也可以是多个字符串的数组。

然后,使用$deviceToken函数检查is_array是否为数组。价:http://us3.php.net/manual/en/function.is-array.php

为此,您可能必须重写代码的一小部分。总的来说,它看起来像这样:

if(is_array($deviceToken)) {
    // Iterate over the array and call the same function with each string
    return;
}

// You're code to actually send the push notification just as you have it above.