网站地图    收藏   

主页 > php专栏 > php函数大全 >

php字符串截取函数,支持中英文混体 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] php字符串截取函数,支持中英文混体,以前我们截取字符串都会用php自带的函数,今天我来看一下一款字符串截取函数,支持中英文混体的php代码实例吧.php字符串截取函数代码如下:functioncu...

php字符串截取函数,支持中英文混体

php字符串截取函数,支持中英文混体,以前我们截取字符串都会用php自带的函数,今天我来看一下一款字符串截取函数,支持中英文混体的php代码实例吧.

php字符串截取函数代码如下:

  1. function cutstr($string$sublen=10, $start = 0, $code = 'utf-8'
  2.  if($code == 'utf-8'
  3.  { 
  4.  $pa = "/[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]/"
  5.  preg_match_all($pa$string$t_string); 
  6.  //if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."..."; 
  7.  return join(''array_slice($t_string[0], $start$sublen)); 
  8.  } 
  9.  else 
  10.  { 
  11.  $start = $start*2; 
  12.  $sublen = $sublen*2; 
  13.  $strlen = strlen($string); 
  14.  $tmpstr = ''
  15.  for($i=0; $i<$strlen$i++) 
  16.  { 
  17.  if($i>=$start && $i<($start+$sublen)) 
  18.  { 
  19.  if(ord(substr($string$i, 1))>129) $tmpstr.= substr($string$i, 2); 
  20.  else $tmpstr.= substr($string$i, 1); 
  21.  }  
  22.  if(ord(substr($string$i, 1))>129) $i++; 
  23.  }//开源软件:phpfensi.com 
  24.  //if(strlen($tmpstr)<$strlen ) $tmpstr.= "..."; 
  25.  return $tmpstr
  26.  } 
  27. }

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论