显示&相反 &

发布于 2024-10-17 02:47:56 字数 155 浏览 2 评论 0原文

我在数据库中保存了以下字符串:“cocotte & kekette”。
当我使用 PHP 查询并显示在我的网页中时,会显示字符串“cocotte & kekette”。
有人可以告诉我如何解决这个问题吗?

I have the following string saved in a database: "cocotte & kekette".
When I query it and display in my web page with PHP, the string "cocotte & kekette" is displayed.
Can someone tell me how to fix this?

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

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

发布评论

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

评论(2

幼儿园老大 2024-10-24 02:47:56

尝试

html_entity_decode($string);

或者

mb_convert_encoding($string, "HTML-ENTITIES", "UTF-8");

Try either

html_entity_decode($string);

Or

mb_convert_encoding($string, "HTML-ENTITIES", "UTF-8");
ㄖ落Θ余辉 2024-10-24 02:47:56

这意味着您可能一开始就在数据库中保存了“cocotte & kekette”。如果没有,则说明您对字符串进行了双重编码。

正确的路径是将未编码的数据保存在数据库中。这是不可能的,请参阅 htmlspecialchars

That means you probably saved "cocotte & kekette" in the database to begin with. If not, you're double encoding your string.

The right path would be to save the data unencoded in the database. That not being possible, see the $double_encode argument (set it to FALSE) in htmlspecialchars.

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