先说好话 - 我的代码正在运行。但不幸的是,要推送到许多设备时速度非常慢。由于之前一个设备因我的代码而失败(连接是在循环外建立的)时整个推送过程都失败了,所以我在循环内建立了连接:
foreach ($deviceTokens as $token) {
$fp = stream_socket_client($this->data['config']['push']['apnsAddress'], $err, $errstr, 60, STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT, $ctx);
$msg = chr(0).pack('n', 32).pack('H*', $token).pack('n', strlen($payload)).$payload;
$result = fwrite($fp, $msg);
if (!$result) {
$this->pushLog('devicetoken '.$token.' failed');
$errors++;
}
fclose($fp);
}
除了为每个安装了应用程序的人建立新连接之外,没有其他方法可以推送到多个设备吗?这个脚本的运行时间目前很长。