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

php函数substr_replace中文乱码的替代解决方法

时间:2014-09-10 01:34:49      阅读:2924      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   div   问题   sp   log   c   

        $str = "中华人民共和国";
        $len = mb_strlen($str,‘utf-8‘);
        if($len>=6){
            $str1 = mb_substr($str,0,2,‘utf-8‘);
            $str2 = mb_substr($str,$len-2,2,‘utf-8‘);
        }
        else{
            $str1 = mb_substr($str,0,1,‘utf-8‘);
            $str2 = mb_substr($str,$len-1,1,‘utf-8‘);            
        }

        $this->assign(‘str1‘,$str1);
        $this->assign(‘str2‘,$str2);
        $this->assign(‘str‘,$str1.‘**‘.$str2);
        $this->assign(‘strold‘,substr_replace($str,‘**‘,2,2));

输出结果为:

中华
和国
中华**和国
??**??人民共和国
 
substr_replace函数有些缺陷,中文替代会出现乱码,使用mb_substr函数截取函数再连接字符串解决,虽然有点丑陋,但能解决问题。

php函数substr_replace中文乱码的替代解决方法

标签:style   blog   color   使用   div   问题   sp   log   c   

原文地址:http://www.cnblogs.com/tylerdonet/p/3963624.html

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