在使用file_get_contents
函数读取文件时出现乱码通常是因为文件编码不匹配导致的。解决方法有以下几种:
$context
来指定文件编码,例如:$file_contents = file_get_contents('file.txt', false, stream_context_create([
'http' => [
'header' => 'Content-Type: text/plain; charset=utf-8'
]
]));
iconv
函数转换编码:可以使用iconv
函数将文件内容转换为指定编码,例如:$file_contents = file_get_contents('file.txt');
$file_contents = iconv('gbk', 'utf-8', $file_contents);
通过以上方法应该可以解决使用file_get_contents
读取文件出现乱码的问题。