首页 > Web开发 > 详细

php截取中文字符串 GB2312 utf-8

时间:2014-07-31 16:37:16      阅读:291      评论:0      收藏:0      [点我收藏+]
UTF-8截取中文字符串
   function Cn_Substr($string, $length) {
        preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/", $string, $info);  
        for($i=0; $i<count($info[0]); $i++) {
 $wordscut .= $info[0][$i];
 $j = ord($info[0][$i]) > 127 ? $j + 2 : $j + 1;
 if ($j > $length - 3) {
 return $wordscut." ...";
 }
        }
        return join(‘‘, $info[0]);
   }
GB2312截取中文字符串
   function Cn_Substrs($strs,$lens){
      if (strlen($strs)<$lens) {
          $nstrs=$strs;
      }else{
          $mlens=$lens;
          for ($i=0;$i<=strlen($strs) && $mlens>0;$i++){
             $chars=substr($strs,$i,1);
             if(ord($chars)>0xa0 ) { 
                $i++;
                $mlens -=2;;
             }else{
                $mlens--;
             }
          }
          $nstrs=substr($strs,0,$i)."...";
      }
      return $nstrs;
   }

 

php截取中文字符串 GB2312 utf-8,布布扣,bubuko.com

php截取中文字符串 GB2312 utf-8

原文:http://www.cnblogs.com/whlives/p/3880910.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!