0

当我使用非英文的 AJAX 提交帖子时,我会得到类似于%u4F60%u662F%u5982%u4F55%u505A%uFF1F What can I do to fix this in PHP? 我试过了utf8_decode,还是不行。

如果有帮助,我将使用 AJAX 提交文本。

4

1 回答 1

2

这是做你想做的吗?

<?php

  function utf8_urldecode ($str) {
    return urldecode(preg_replace_callback('/%u([0-9A-F]{4,6})/i', function($matches) {
      $int = hexdec($matches[1]);
      switch (TRUE) {
        case $int < 0x80:
          return pack('C*', $int & 0x7F);
        case $int < 0x0800:
          return pack('C*', (($int & 0x07C0) >> 6) | 0xC0, ($int & 0x3F) | 0x80);
        case $int < 0x010000:
          return pack('C*', (($int & 0xF000) >> 12) | 0xE0, (($int & 0x0FC0) >> 6) | 0x80, ($int & 0x3F) | 0x80);
        case $int < 0x110000:
          return pack('C*', (($int & 0x1C0000) >> 18) | 0xF0, (($int & 0x03F000) >> 12) | 0x80, (($int & 0x0FC0) >> 6) | 0x80, ($int & 0x3F) | 0x80);
        default:
          return $matches[0];
      }
    }, $str));
  }

  $str = "%u4F60%u662F%u5982%u4F55%u505A%uFF1F";

  echo utf8_urldecode($str);

我以前从未尝试过将十六进制 UTF-8 代码点转换为二进制,结果发现它实际上很容易理解它。当然,它可能仍会在您的浏览器中显示为废话,具体取决于字符实际是什么 - 您可能需要安装语言包才能正确呈现它们。

于 2012-05-17T23:59:17.820 回答