php 中英字符串截取,支持utf8 和gbk

今天在遇到了一个中英字符串截取的问题,在gbk里中文里每个字占两字节,如果全是中文的话,用substr()函数就可以实现了,但中英都有的话就麻烦了,在以前收藏的代码里找到了一个不错的函数,很好的实现了截取的功能

1 function get_word($string, $length, $dot = '..',$charset='gbk') {
2
3 if(strlen($string) <= $length) {
4 return $string;
5 }
6
7 $string = str_replace(array(' ','&nbsp;', '&amp;', '&quot;', '&lt;', '&gt;'), array('','','&', '"', '<', '>'), $string);
8
9 $strcut = '';
10 if(strtolower($charset) == 'utf-8') {
11
12 $n = $tn = $noc = 0;
13 while($n < strlen($string)) {
14
15 $t = ord($string[$n]);
16 if($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) {
17 $tn = 1; $n++; $noc++;
18 } elseif(194 <= $t && $t <= 223) {
19 $tn = 2; $n += 2; $noc += 2;
20 } elseif(224 <= $t && $t < 239) {
21 $tn = 3; $n += 3; $noc += 2;
22 } elseif(240 <= $t && $t <= 247) {
23 $tn = 4; $n += 4; $noc += 2;
24 } elseif(248 <= $t && $t <= 251) {
25 $tn = 5; $n += 5; $noc += 2;
26 } elseif($t == 252 || $t == 253) {
27 $tn = 6; $n += 6; $noc += 2;
28 } else {
29 $n++;
30 }
31
32 if($noc >= $length) {
33 break;
34 }
35
36 }
37 if($noc > $length) {
38 $n -= $tn;
39 }
40
41 $strcut = substr($string, 0, $n);
42
43 } else {
44 for($i = 0; $i < $length; $i++) {
45 $strcut .= ord($string[$i]) > 127 ? $string[$i].$string[++$i] : $string[$i];
46 }
47 }
48
49
51 return $strcut.$dot;
52 }
posted on 2011-03-30 16:39  say0507  阅读(198)  评论(0编辑  收藏  举报