`
icarusli
  • 浏览: 524660 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

PHP 截取中文(UTF8版)

 
阅读更多

function SubTitle($String,$Length) {
 if (mb_strwidth($String, 'UTF8') <= $Length ){
  return $String;
 }else{
  $I = 0;
  $len_word = 0;
  while ($len_word < $Length){
   $StringTMP = substr($String,$I,1);
   if ( ord($StringTMP) >=224 ){
    $StringTMP = substr($String,$I,3);
    $I = $I + 3;
    $len_word = $len_word + 2;
   }elseif( ord($StringTMP) >=192 ){
    $StringTMP = substr($String,$I,2);
    $I = $I + 2;
    $len_word = $len_word + 2;
   }else{
    $I = $I + 1;
    $len_word = $len_word + 1;
   }
   $StringLast[] = $StringTMP;
  }
  /* raywang edit it for dirk for (es/index.php)*/
  if (is_array($StringLast) && !empty($StringLast)){
   $StringLast = implode("",$StringLast);
   $StringLast .= "...";
  }
  return $StringLast;
 }
}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics