带有 Easy APN 的丹麦字符
我正在尝试使用 Easy APNs 在警报通知中发送丹麦字符(Æ、Ø、Å),但是在执行时因此,不会发送任何消息。如果我用声音发送,则仅发送声音。此外,如果该消息包含任何丹麦语字符,则该消息将在数据库中设置为“null”。
有谁知道这个问题的解决办法吗?
I am trying to send Danish characters (Æ, Ø, Å) in an alarm notification using Easy APNs but when doing so, no message is send. If I send it with sound, only the sound is send. Also the message will be set to "null" in the database if it includes any of the Danish characters.
Does anyone know a fix for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是由
json_encode()
引起的。在json_encode()
解决问题之前,在我的警报视图上使用utf8_encode()
。更新(如何解决问题)
1. 在
class_APNS.php
中第 411 行左右,您有$msg = chr(0 ).pack("n",32).pack('H*',$token).pack("n",strlen($message)).$message;
在上面,输入:
$message = utf8_encode($message);
2. 在
class_APNS.php
(同一文件)中输入:$usermessage['aps'] ['alert'] = utf8_encode($usermessage['aps']['alert']);
将其放在以下内容之上:
This was caused by
json_encode()
. Usingutf8_encode()
on my alert views beforejson_encode()
solved the issue.UPDATE (How to fix the issue)
1. In
class_APNS.php
around line 411, you have$msg = chr(0).pack("n",32).pack('H*',$token).pack("n",strlen($message)).$message;
Above that, put:
$message = utf8_encode($message);
2. In
class_APNS.php
(same file) put this:$usermessage['aps']['alert'] = utf8_encode($usermessage['aps']['alert']);
Put it just above the following: