【发布时间】:2011-04-02 18:44:47
【问题描述】:
我使用JSON.stringify() 函数将 JS 对象字符串化,以便 AJAX 发送到 PHP。
当 JSON.stringify 函数将 unicode 字符编码为格式\uxxxx(例如\u000a)时,就会出现问题。我的问题是如何将这些字符转换为 PHP 中的常规 unicode 字符?
【问题讨论】:
我使用JSON.stringify() 函数将 JS 对象字符串化,以便 AJAX 发送到 PHP。
当 JSON.stringify 函数将 unicode 字符编码为格式\uxxxx(例如\u000a)时,就会出现问题。我的问题是如何将这些字符转换为 PHP 中的常规 unicode 字符?
【问题讨论】:
见Output UTF-16? A little stuck
这将转换为 UTF-8:
function unescape_utf16($string) {
/* go for possible surrogate pairs first */
$string = preg_replace_callback(
'/\\\\u(D[89ab][0-9a-f]{2})\\\\u(D[c-f][0-9a-f]{2})/i',
function ($matches) {
$d = pack("H*", $matches[1].$matches[2]);
return mb_convert_encoding($d, "UTF-8", "UTF-16BE");
}, $string);
/* now the rest */
$string = preg_replace_callback('/\\\\u([0-9a-f]{4})/i',
function ($matches) {
$d = pack("H*", $matches[1]);
return mb_convert_encoding($d, "UTF-8", "UTF-16BE");
}, $string);
return $string;
}
【讨论】: