php: html_entity_decode 未转换 ⋅到简单字符点
我一直在尝试像这样转换 sdot
html_entity_decode("⋅");
有什么提示吗?
I have been trying to convert sdot like this
html_entity_decode("⋅");
Any tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转换的默认字符集是 ISO-8859-1,它不能表示
⋅
。指定可以表示该字符的字符集,它将被转换。The default character set being converted to is ISO-8859-1, which cannot represent
⋅
. Specify a character set that can represent that character and it will be converted.