iconv 等价于 mb_string 函数

发布于 2024-10-07 04:52:56 字数 412 浏览 5 评论 0原文

我有下一个代码序列:

// characters U-00000080 - U-000007FF, mask 110XXXXX
$char= pack('C*', $ord_v, ord($string{$c + 1}));
$c += 1;
$utf16= mb_convert_encoding($char, 'UTF-16', 'UTF-8');
$ret .= sprintf('\u%04s', bin2hex($utf16));

该代码是来自 json.org 的 json 编码函数的一部分。 达到相同效果的等效 iconv 转换是什么? 我尝试了 iconv('UTF-8', 'UTF-16', $char);但 iconv 插入了一个 LE 标志字节(我猜),我不知道如何处理它。

问候, 亚历克斯

I have the next sequence of code:

// characters U-00000080 - U-000007FF, mask 110XXXXX
$char= pack('C*', $ord_v, ord($string{$c + 1}));
$c += 1;
$utf16= mb_convert_encoding($char, 'UTF-16', 'UTF-8');
$ret .= sprintf('\u%04s', bin2hex($utf16));

The code is part of json encode function from json.org.
What is the equivalent iconv conversion to achive the same thing?
I tried iconv('UTF-8', 'UTF-16', $char); but iconv inserts a LE flag byte (I guess), and I don't know how to deal with it.

Regards,
Alex

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

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

发布评论

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

评论(1

南城旧梦 2024-10-14 04:52:56

iconv('UTF-8', 'UTF-16', '$char') 转换字符串“$char”。要转换变量 $char 的内容,请省略撇号。 iconv('UTF-8', 'UTF-16', $char)

iconv('UTF-8', 'UTF-16', '$char') converts the string "$char". To convert the content of the variable $char omit the apostrophes. iconv('UTF-8', 'UTF-16', $char)

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