无效字符不显示

发布于 2024-12-25 03:25:38 字数 412 浏览 1 评论 0原文

我有一个无法编辑的 xml feed,它是远程的。

现在,当我将其导入到数据库时,

它会这样说:

A taste of Turkey for £21 10 Meze dishes, bread and drinks for two at Cirrik Fulham

但输出的是:

A taste of Turkey for £21 –10 Meze dishes, bread and drinks for two at Cirrik Fulham

是否有一个 php 函数可以用来修复这个问题,尝试过 htmlspecialchars()htmlentities() 没有运气。

I have an xml feed which i cannot edit, its remote.

Now when i import it to db

it says this:

A taste of Turkey for £21 10 Meze dishes, bread and drinks for two at Cirrik Fulham

but is outputting this:

A taste of Turkey for £21 –10 Meze dishes, bread and drinks for two at Cirrik Fulham

Is there a php function i can use to fix this tried htmlspecialchars() and htmlentities() no luck.

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

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

发布评论

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

评论(1

悲歌长辞 2025-01-01 03:25:38

使用

echo mb_convert_encoding($string_from_db, 'HTML-ENTITIES', 'UTF-8');

use

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