php里面的编码问题
Posted 与f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php里面的编码问题相关的知识,希望对你有一定的参考价值。
1 获取当前字符串的编码
$encode = mb_detect_encoding($str, array("ASCII",‘UTF-8‘,"GB2312","GBK",‘BIG5‘));
2 将字符编码改为utf-8
$str_encode = mb_convert_encoding($str, ‘UTF-8‘, $encode);
下面举例子:把一个字符串(utf-8)编码改为gbk
$file = "C:\\Users\\Administrator\\Desktop\\中文.xls"; $file = iconv(‘utf-8‘, ‘gb2312‘, $file);
或
$file = "C:\\Users\\Administrator\\Desktop\\中文.xls"; //自动获取字符串编码 $encode = mb_detect_encoding($file, array("ASCII",‘UTF-8‘,"GB2312","GBK",‘BIG5‘)); $file = mb_convert_encoding($file, ‘GB2312‘, $encode);
参考:http://www.php.net/manual/zh/book.iconv.php
以上是关于php里面的编码问题的主要内容,如果未能解决你的问题,请参考以下文章
markdown 打字稿...编码说明,提示,作弊,指南,代码片段和教程文章