mb_convert_encoding - utf8 encode php
¿Cómo escribir un archivo en formato UTF-8? (10)
Tengo un montón de archivos que no están en codificación UTF-8 y estoy convirtiendo un sitio a codificación UTF-8.
Estoy usando una secuencia de comandos simple para los archivos que quiero guardar en utf-8, pero los archivos se guardan en la codificación anterior:
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);
}
}
¿Cómo puedo guardar archivos en codificación utf-8?
- Abra sus archivos en el cuaderno de Windows
- Cambia la codificación para que sea una codificación UTF-8
- Guarde su archivo
- ¡Inténtalo de nuevo! : O)
Agregar lista de materiales: UTF-8
file_put_contents($myFile, "/xEF/xBB/xBF". $content);
En Unix / Linux, un comando de shell simple podría usarse alternativamente para convertir todos los archivos de un directorio determinado:
recode L1..UTF8 dir/*
Podría iniciarse a través de PHPs exec () también.
Esto funciona para mí :)
$f=fopen($filename,"w");
# Now UTF-8 - Add byte order mark
fwrite($f, pack("CCC",0xef,0xbb,0xbf));
fwrite($f,$content);
fclose($f);
Puse todo junto y conseguí una forma fácil de convertir archivos de texto ANSI a "UTF-8 Sin marca":
function filesToUTF8($searchdir,$convdir,$filetypes) {
$get_files = glob($searchdir.''*{''.$filetypes.''}'', GLOB_BRACE);
foreach($get_files as $file) {
$expl_path = explode(''/'',$file);
$filename = end($expl_path);
$get_file_content = file_get_contents($file);
$new_file_content = iconv(mb_detect_encoding($get_file_content, mb_detect_order(), true), "UTF-8", $get_file_content);
$put_new_file = file_put_contents($convdir.$filename,$new_file_content);
}
}
Uso: filesToUTF8 (''C: / Temp /'', ''C: / Temp / conv_files /'', ''php, txt'');
Si desea utilizar recodificar recursivamente y filtrar por tipo, intente esto:
find . -name "*.html" -exec recode L1..UTF8 {} /;
file_get_contents / file_put_contents no convertirá mágicamente la codificación.
Tienes que convertir la cadena explícitamente; por ejemplo con iconv()
o mb_convert_encoding()
.
Prueba esto:
$data = file_get_contents($npath);
$data = mb_convert_encoding($data, ''UTF-8'', ''OLD-ENCODING'');
file_put_contents(''tempfolder/''.$a, $data);
O, alternativamente, con los filtros de flujo de PHP:
$fd = fopen($file, ''r'');
stream_filter_append($fd, ''convert.iconv.UTF-8/OLD-ENCODING'');
stream_copy_to_stream($fd, fopen($output, ''w''));
Iconv al rescate.
<?php function writeUTF8File($filename,$content) { $f=fopen($filename,"w"); # Now UTF-8 - Add byte order mark fwrite($f, pack("CCC",0xef,0xbb,0xbf)); fwrite($f,$content); fclose($f); } ?>
//add BOM to fix UTF-8 in Excel
fputs($fp, $bom =( chr(0xEF) . chr(0xBB) . chr(0xBF) ));
Tengo esta línea de Cool