首页 > 作文

PHP读取文件,解决中文乱码UTF

更新时间:2023-04-08 03:21:41 阅读: 评论:0

本文实例讲述了php读取文件,解决中文乱码utf-8的方法。分享给大家供大家参考,具体如下:

$opts = array(  'file' => array(    'encoding' => "utf-8"  ));$opts = array('http' => array('encoding' => 'utf-8'));$ctxt = stream_context_create($opts);$content = file_get_contents($filepath, file_text, $ctxt);

最简单的就是将gf2312→utf-8

$str = iconv("gb2312", "utf-8", $str);

不管用的

$content = mb_convert_encodi重庆大专排名ng($content, "utf-8", "auto");

******************************************丑陋的分割线来告诉大家上面的不好的:下面的才是正确的方法导学案···哈哈···**********************************************************

尽的多音字组词define('utf32_big_endian_bom', chr(0x00) . chr(0x00) . chr(0xfe) . chr(0xff));define('utf32_little_endian_bom', chr(0xff) . chr(0xfe) . chr(0x00) . chr(0x00));define('utf16_big_endian_bom', chr(0xfe) . chr(0xff));define('utf16_little_endian_bom', chr(0xff) . chr(0xfe));define('utf8_bom', chr(0xef) . chr(0xbb) . chr(0xbf));$text = file_get_contents($newpath);$first2 = substr($text, 0, 2);$first3 = substr($text, 0, 3);$first4 = substr($text, 0, 3);$encodtype = "";if ($first3 == utf8_bom)  $encodtype = 'utf-8 bom';el if ($first4 == utf32_big_endian_bom)  $encodtype = 'utf-32be';el if ($first4 == utf32_little_endian_bom)  $encodtype = 'utf-32le';el if ($first2 == utf16_big_endian_bom)  $en月球作文codtype = 'utf-16be';el if ($first2 == utf16_little_endian_bom)  $encodtype = 'utf-16le';$content = file_get_contents($newpath);$content = iconv($encodtype, "utf-8", $content);

终极版·····

$text = file_get_contents($filepath);//$encodtype = mb_detect_encoding($text);define('utf32_big_e制造业自动化ndian_bom', chr(0x00) . chr(0x00) . chr(0xfe) . chr(0xff));define('utf32_little_endian_bom', chr(0xff) . chr(0xfe) . chr(0x00) . chr(0x00));define('utf16_big_endian_bom', chr(0xfe) . chr(0xff));define('utf16_little_endian_bom', chr(0xff) . chr(0xfe));define('utf8_bom', chr(0xef) . chr(0xbb) . chr(0xbf));$first2 = substr($text, 0, 2);$first3 = substr($text, 0, 3);$first4 = substr($text, 0, 3);$encodtype = "";if ($first3 == utf8_bom)  $encodtype = 'utf-8 bom';el if ($first4 == utf32_big_endian_bom)  $encodtype = 'utf-32be';el if ($first4 == utf32_little_endian_bom)  $encodtype = 'utf-32le';el if ($first2 == utf16_big_endian_bom)  $encodtype = 'utf-16be';el if ($first2 == utf16_little_endian_bom)  $encodtype = 'utf-16le';//下面的判断主要还是判断ansi编码的·if ($encodtype == '') {//即默认创建的txt文本-ansi编码的  $content = iconv("gbk", "utf-8", $text);} el if ($encodtype == 'utf-8 bom') {//本来就是utf-8不用转换  $content = $text;} el {//其他的格式都转化为utf-8就可以了  $content = iconv($encodtype, "utf-8", $text);}

以上的终极版·可以适应中文操作windows系统建立的ansi“““““““utf-8““““`unicode““`的txt文本····

本文发布于:2023-04-08 03:21:39,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/402ef4469fb1a31b48ee574dc879f073.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP读取文件,解决中文乱码UTF.doc

本文 PDF 下载地址:PHP读取文件,解决中文乱码UTF.pdf

标签:中文   多音字   文本   终极版
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图