如何写入 UTF-8 格式的文件?
我有一堆不是 UTF-8 编码的文件,我正在将一个站点转换为 UTF-8 编码。
我对要以 UTF-8 保存的文件使用简单脚本,但文件以旧编码保存:
header('Content-type: text/html; charset=utf-8');
mb_internal_encoding('UTF-8');
$fpath = "folder";
$d = dir($fpath);
while (False !== ($a = $d->read()))
{
if ($a != '.' and $a != '..')
{
$npath = $fpath . '/' . $a;
$data = file_get_contents($npath);
file_put_contents('tempfolder/' . $a, $data);
}
}
How can I save files in UTF-8编码?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
添加 BOM:UTF-8
Add BOM: UTF-8
file_get_contents()和file_put_contents() > 不会神奇地转换编码。
您必须显式转换字符串;例如使用 iconv() 或 mb_convert_encoding()。
试试这个:
或者,使用 PHP 的流过滤器:
file_get_contents() and file_put_contents() will not magically convert encoding.
You have to convert the string explicitly; for example with iconv() or mb_convert_encoding().
Try this:
Or alternatively, with PHP's stream filters:
Iconv 来救援。
Iconv to the rescue.
在 Unix/Linux 上,可以使用简单的 shell 命令来转换给定目录中的所有文件:
它可以通过 PHP 的 exec() 也是如此。
On Unix/Linux, a simple shell command could be used alternatively to convert all files from a given directory:
It could be started via PHP's exec() as well.
我从 Cool 得到了这一行
I got this line from Cool
如果您想递归地使用重新编码并过滤类型,请尝试以下操作:
If you want to use recode recursively, and filter for type, try this:
我把所有这些放在一起,得到了将 ANSI 文本文件转换为“UTF-8 No Mark”的简单方法:
用法:
I put all together and got easy way to convert ANSI text files to "UTF-8 No Mark":
Usage:
这是一个非常有用的问题。我认为我在 Windows 10 PHP 7 上的解决方案对于那些还存在 UTF-8 转换问题的人来说相当有用。
这是我的步骤。调用以下函数的 PHP 脚本(位于 utfsave.php 中)本身必须具有 UTF-8 编码,这可以通过 UltraEdit。
在utfsave.php文件中,我们定义了一个调用PHP fopen($filename, "wb")的函数,即在两者中打开w 写入模式,尤其是二进制 模式下的b。
源文件cp936gbktext.txt的内容:
在Windows 10 PHP上运行utf8save.php,从而创建utf8text.txt、utf8text2。 txt 文件将自动保存为 UTF-8 格式。
使用此方法,不需要 BOM 字符。 BOM 解决方案很糟糕,因为当我们为 MySQL 获取 SQL 文件时,它会带来麻烦。
值得注意的是,我未能为此目的进行 file_put_contents($filename, utf8_encode($mystring)); 工作。
++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++
如果你不知道源文件的编码,你可以用 PHP 列出编码:
这给出了一个这样的列表:
如果你猜不出来,你一个一个地尝试,因为 mb_detect_encoding() 无法轻松完成这项工作。
This is a quite useful question. I think that my solution on Windows 10 PHP 7 is rather useful for people who have yet some UTF-8 conversion trouble.
Here are my steps. The PHP script calling the following function, here in utfsave.php must have UTF-8 encoding itself, and this can be easily done by conversion on UltraEdit.
In the utfsave.php file, we define a function calling PHP fopen($filename, "wb"), i.e., it's opened in both w write mode, and especially with b in binary mode.
The content of source file cp936gbktext.txt:
Running utf8save.php on Windows 10 PHP, thus created utf8text.txt, utf8text2.txt files will be automatically saved in UTF-8 format.
With this method, the BOM characters are not required. The BOM solution is bad because it causes troubles when we do sourcing of an SQL file for MySQL for example.
It's worth noting that I failed making work file_put_contents($filename, utf8_encode($mystring)); for this purpose.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
If you don't know the encoding of the source file, you can list encodings with PHP:
This gives a list like this:
If you cannot guess, you try one by one, as mb_detect_encoding() cannot do the job easily.