我正在发送推送通知,当邮件中包含外来字符(我的情况下是土耳其语),如İ,ş,ç,ğ...邮件未到达设备。
这是我的代码:
$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ÝSis push”。像iconv()这样的其他方式对我来说不起作用,其中一些裁剪土耳其字符,有些根本没有收到。
我也有
header('content-type: text/html; charset: utf-8');
和
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
在我的页面中。我设置值时可能不会出现问题,但可能使用pack()函数。
任何想法都可以解决这个问题而不用英文替换字符?
答案 0 :(得分:3)
我所要做的就是用以下脚本替换土耳其语字符:
function tr_to_utf($text) {
$text = trim($text);
$search = array('Ü','Ş','Ğ','Ç','İ','Ö','ü','ş','ğ','ç','ı','ö');
$replace = array('Ãœ','Å','Ğ','Ç','Ä°','Ö','ü','ÅŸ','ÄŸ','ç','ı','ö');
$new_text = str_replace($search,$replace,$text);
return $new_text;
}
现在它没有问题。
答案 1 :(得分:0)
“n”参数表示您打包为无符号短(始终为16位,大端字节顺序)。我不确定Apple CPU硬件如何处理指令以及如何转换它们,但肯定不同于PC。尝试切换字节顺序,使用“v”无符号短(总是16位,小端字节顺序)。