标签:enc 写文件 coding class ignore iconv 读写 检查 方法
核心代码:
//检查字符串的编码 $charset=mb_detect_encoding($doc,[‘ASCII‘,‘UTF-8‘,‘GB2312‘,‘GBK‘,‘BIG5‘]); //字符串转换为UTF8 $doc = iconv($charset, ‘UTF-8//TRANSLIT//IGNORE‘, $doc);
如果是读写文件,在不更改文件编码情况下,可以先读取内容转为系统编码,再转为文件编码格式写到文件中。
标签:enc 写文件 coding class ignore iconv 读写 检查 方法
原文地址:http://www.cnblogs.com/GaZeon/p/7362356.html