Detect file encoding in PHP(检测PHP中的文件编码)
问题描述
我有一个脚本将多个文件合并为一个,当其中一个文件具有 UTF8 编码时它会中断.我想我应该在读取文件时使用 utf8_decode()
函数,但我不知道如何判断哪个需要解码.
I have a script which combines a number of files into one, and it breaks when one of the files has UTF8 encoding. I figure that I should be using the utf8_decode()
function when reading the files, but I don't know how to tell which need decoding.
我的代码基本上是:
$output = '';
foreach ($files as $filename) {
$output .= file_get_contents($filename) . "
";
}
file_put_contents('combined.txt', $output);
目前,在 UTF8 文件的开头,它会在输出中添加以下字符:
Currently, at the start of a UTF8 file, it adds these characters in the output: 
推荐答案
尝试使用 mb_detect_encoding
函数.此函数将检查您的字符串并尝试猜测"其编码是什么.然后,您可以根据需要对其进行转换.但是,正如 brulak 建议的,您最好转换to UTF-8 而不是 from,以保留您正在传输的数据.
Try using the mb_detect_encoding
function. This function will examine your string and attempt to "guess" what its encoding is. You can then convert it as desired. As brulak suggested, however, you're probably better off converting to UTF-8 rather than from, to preserve the data you're transmitting.
这篇关于检测PHP中的文件编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检测PHP中的文件编码
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP - if 语句中的倒序 2021-01-01