CKEditor / Ajax 特殊字符编码/解码不起作用

发布于 2024-10-16 15:28:04 字数 579 浏览 2 评论 0原文

我正在使用 CKEditor,并输入一些带有特殊字符的文本:“Bâtisseurs Passionnés”,注意法语特殊字符。然后,我使用 javascript escape() 获取输入并通过 AJAX/JSON 将其发送到 PHP 服务器脚本。

在 PHP 方面,使用 urldecode() 之前和之后的日志输出如下所示,它似乎转换了

标签部分,但特殊字符仅显示为“?”并按原样存储到数据库中。我应该使用另一个电话吗?或者 urldecode 中不包含特殊字符?

$json = json_decode($data);
error_log("URLDecode: before: " . $data);
error_log("URLDecode: after: " . urldecode($data));

输出看起来像

URLDecode: before: %3Cp%3E%0A%09B%E2tisseurs%20passionn%E9s%3C/p%3E%0A
URLDecode: after: <p>
    B?tisseurs passionn?s</p>

I'm using CKEditor, and typing in some text with special characters: "Bâtisseurs passionnés", note french special characters. I then use javascript escape() to get the input and send it via AJAX/JSON to the PHP server script.

On the PHP side of things, the log output looks like the following before and after using urldecode(), it appears to convert the

tag parts but the special characters only show up as '?' and stored as such into the database. Is there another call I should be using? Or are special characters not included for urldecode?

$json = json_decode($data);
error_log("URLDecode: before: " . $data);
error_log("URLDecode: after: " . urldecode($data));

and the output looks like

URLDecode: before: %3Cp%3E%0A%09B%E2tisseurs%20passionn%E9s%3C/p%3E%0A
URLDecode: after: <p>
    B?tisseurs passionn?s</p>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

煞人兵器 2024-10-23 15:28:04

escape 不是 php 的 urldecode 的匹配对。
在 JavaScript 中使用 encodeURIComponent

转义和unescape函数
escape 和 unescape 函数对于非 ASCII 字符无法正常工作,已被弃用。在 JavaScript 1.5 及更高版本中,使用encodeURI、decodeURI、encodeURIComponent 和decodeURIComponent。

MDC:函数

escape isn't a match pair for php's urldecode.
Use encodeURIComponent in javascript.

escape and unescape Functions
The escape and unescape functions do not work properly for non-ASCII characters and have been deprecated. In JavaScript 1.5 and later, use encodeURI, decodeURI, encodeURIComponent, and decodeURIComponent.

MDC:functions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文