显示&相反 &
我在数据库中保存了以下字符串:“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
或者
Try either
Or
这意味着您可能一开始就在数据库中保存了“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 toFALSE
) inhtmlspecialchars
.