我正在发送推送通知,当消息包含外来字符(在我的情况下为土耳其语)时,如 İ、ş、ç、ğ... 消息未到达设备。
这是我的代码:
$message = 'THİS is push';
$passphrase = 'mypass';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'MyPemFile.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 Apple service. ' . PHP_EOL;
// Encode the payload as JSON
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
$payload = json_encode($body);
$result = 'Start'.PHP_EOL;
$tokenArray = array('mytoken');
foreach ($tokenArray as $item)
{
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $item) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Failed message'.PHP_EOL;
else
echo 'Successful message'.PHP_EOL;
}
// Close the connection to the server
fclose($fp);
我尝试使用 utf8_encode() 对 $message 变量进行编码,但收到的消息为“THÝS is push”。像 iconv() 之类的其他方式对我不起作用,其中一些裁剪了土耳其字符,有些根本没有收到。
我也有
header('content-type: text/html; charset: utf-8');
和
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
在我的页面中。我认为在设置值时不会出现问题,但可能是使用 pack() 函数。
有什么想法可以解决这个问题而不用英文替换字符?