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);
}
}
Utf-8エンコーディングでファイルを保存するにはどうすればよいですか?
file_get_contents/file_put_contentsは、魔法のようにエンコードを変換しません。
文字列を明示的に変換する必要があります。たとえば、 iconv()
または mb_convert_encoding()
を使用します。
これを試して:
$data = file_get_contents($npath);
$data = mb_convert_encoding($data, 'UTF-8', 'OLD-ENCODING');
file_put_contents('tempfolder/'.$a, $data);
または、PHPのストリームフィルターを使用する場合:
$fd = fopen($file, 'r');
stream_filter_append($fd, 'convert.iconv.UTF-8/OLD-ENCODING');
stream_copy_to_stream($fd, fopen($output, 'w'));
BOMの追加:UTF-8
file_put_contents($myFile, "\xEF\xBB\xBF". $content);
<?php function writeUTF8File($ filename、$ content){ $ f = fopen($ filename、 "w"); #UTF-8-バイトオーダーマークを追加 fwrite($ f、pack( "CCC"、0xef、0xbb、0xbf)); fwrite($ f、$ content); fclose($ f); } ?>
Iconv 救助に。
Unix/Linuxでは、単純なシェルコマンドを代わりに使用して、指定されたディレクトリのすべてのファイルを変換できます。
recode L1..UTF8 dir/*
PHPのexec()からも起動できます。
//add BOM to fix UTF-8 in Excel
fputs($fp, $bom =( chr(0xEF) . chr(0xBB) . chr(0xBF) ));
Cool からこの行を得ました
これは私のために動作します。 :)
$f=fopen($filename,"w");
# Now UTF-8 - Add byte order mark
fwrite($f, pack("CCC",0xef,0xbb,0xbf));
fwrite($f,$content);
fclose($f);
再帰的にrecodeを使用し、タイプにフィルターをかけたい場合は、これを試してください:
find . -name "*.html" -exec recode L1..UTF8 {} \;