我发送推送通知,并在消息中包含外文字符(土耳其在我的情况),如I,S,C,G ...的消息不到达的设备。
这里是我的代码:
$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编码$消息变量(),但作为“THYS是推”接收到的消息。 和其他类似方式的iconv()并没有为我工作,他们中的一些裁剪土耳其人物,一些没有得到根本。
我也有
header('content-type: text/html; charset: utf-8');
和
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
在我的网页。 我不认为当我用包()函数设定的值,但可能出现的问题。
任何想法解决这个没有用英文代替字符?