将 C 风格的 unicode 转义转换为 htmlentities

发布于 2024-10-11 16:32:01 字数 366 浏览 3 评论 0原文

我想将每个 C 样式 unicode 字符更改为 html 实体。我编写了这个函数来做到这一点:

function ununicode($text) {
    $text = preg_replace('/\\\\u([0-9a-f]{4})/i', '&#x$1;', $text);
    return $text;
}

它工作得很好,但是忽略了诸如\u00f6\u00df之类的第二个字符。即它会产生: ö\u00df

我的正则表达式有什么问题?

I want to change every C style unicode char into html entity. I've written this function to do that:

function ununicode($text) {
    $text = preg_replace('/\\\\u([0-9a-f]{4})/i', '&#x$1;', $text);
    return $text;
}

it works good, but ignores second character in sth like that \u00f6\u00df. ie it will produce: ö\u00df

whats wrong with my regex?

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

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

发布评论

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

评论(1

等你爱我 2024-10-18 16:32:01

尝试添加 g 标志(允许每行多次替换),这样就可以了:

$text = preg_replace('/\\\\u([0-9a-f]{4})/ig', '&#x$1;', $text);

编辑:

您编写的代码似乎对我有用:

php > $text = "\u00f6\u00df";
php > print $text;
\u00f6\u00df
php > $text2 = preg_replace('/\\\\u([0-9a-f]{4})/i', '&#x$1;', $text);
php > print $text2;
öß

Try adding the g flag (which allows more than one replacement per line), so that it's this:

$text = preg_replace('/\\\\u([0-9a-f]{4})/ig', '&#x$1;', $text);

Edit:

Your code as written seems to work for me:

php > $text = "\u00f6\u00df";
php > print $text;
\u00f6\u00df
php > $text2 = preg_replace('/\\\\u([0-9a-f]{4})/i', '&#x$1;', $text);
php > print $text2;
öß
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文