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.
我有一个 utf-8 编码的 php 脚本。在其中,我有一个带有特殊字符的数组(例如顶部带有 ~ 的 n )。在我的编辑器中看起来还不错。php 将数组与来自 html 表单的文本匹配并写入 csv 文件。当我编写文件时,我会这样做;
fwrite($fp,utf8_encode($data),strlen($data)+100);
当我打开文件时,它说它是 utf-8 编码的,但章程都搞砸了。
您是否尝试过不对数据使用 utf_encode() ?似乎您正在重新编码已经 utf-8 编码的东西