码迷,mamicode.com
首页 > Web开发 > 详细

php里面的编码问题

时间:2017-12-10 13:00:55      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:http   style   php   www.   use   color   col   array   gbk   

 

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里面的编码问题

标签:http   style   php   www.   use   color   col   array   gbk   

原文地址:http://www.cnblogs.com/fps2tao/p/8016493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!