带有 Easy APN 的丹麦字符

发布于 2024-10-24 21:46:33 字数 195 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-10-31 21:46:33

这是由 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']);

将其放在以下内容之上:

$fk_device = $this->db->prepare($list[$i]);

$message = $this->_jsonEncode($usermessage);

$message = $this->db->prepare($message);
$delivery = (!empty($when)) ? "'{$when}'":'NOW()';

This was caused by json_encode(). Using utf8_encode() on my alert views before json_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:

$fk_device = $this->db->prepare($list[$i]);

$message = $this->_jsonEncode($usermessage);

$message = $this->db->prepare($message);
$delivery = (!empty($when)) ? "'{$when}'":'NOW()';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文