时间:2021-07-01 10:21:17 帮助过:20人阅读
php文件转utf8的方法:首先通过“file_get_contents”函数将文件读入一个字符串中;然后通过iconv方法对该字符串进行编码转换;最后将字符串写入文件中即可。
推荐:《PHP视频教程》
php转换文件编码
$contents_before = file_get_contents($input); $contents_after = iconv('UCS-2','UTF-8',$contents_before); file_put_contents($input, $contents_after);
处理完了要注意,文件$input已经被改变了。
file_get_contents() 函数把整个文件读入一个字符串中。
iconv — 字符串按要求的字符编码来转换;
file_put_contents() 函数把一个字符串写入文件中。
以上就是php 文件如何转utf8的详细内容,更多请关注gxlcms其它相关文章!