Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个 MYSQL 数据库中有许多外来字符:
ü
他们出现在网站上,例如:
ä
当我从客户端导入电子表格以制作表格时,我无法在数据库条目中转换它们。
php中有没有办法让它们正确输出?
谢谢!
这要么是因为您的文档编码错误,要么是您的数据库链接未启用 UTF。
你用的是什么编辑器?
还要确保通过添加此元标记在页面头部设置正确的字符集:
<meta http-equiv="Content-Type" content="text/html; charset=UTF8" />
使用utf8_encode功能它会帮助你。
utf8_encode