php摘要生成函数分享(好用,无乱码)

php摘要生成函数,保证无乱码,实际应用中无乱码。


在实际使用中,先把要生成摘要的内容strip_tags()一下,也可以把strip_tags()直接添加到函数中,这个有兴趣的朋友,可以研究下。 
下面介绍今天的函数:

 1 <?php

 2 /**

 3 * 生成文章摘要,无乱码

 4 * edit by www.jbxue.com

 5 * at 2013-07-09

 6 */

 7 function cutstr($string, $length,$charset,$dot) {//字符,截取长度,字符集,结尾符 

 8 if(strlen($string) <= $length) { 

 9 return $string; 

10 } 

11 $pre = chr(1); 

12 $end = chr(1); 

13 //保护特殊字符串 

14 $string = str_replace(array('&', '"', '<', '>'), array($pre.'&'.$end, $pre.'"'.$end, $pre.'<'.$end, $pre.'>'.$end), $string); 

15 $strcut = ''; 

16 if(strtolower($charset) == 'utf-8') { 

17 $n = $tn = $noc = 0; 

18 while($n < strlen($string)) { 

19 $t = ord($string[$n]); 

20 if($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) { 

21 $tn = 1; $n++; $noc++; 

22 } elseif(194 <= $t && $t <= 223) { 

23 $tn = 2; $n += 2; $noc += 2; 

24 } elseif(224 <= $t && $t <= 239) { 

25 $tn = 3; $n += 3; $noc += 2; 

26 } elseif(240 <= $t && $t <= 247) { 

27 $tn = 4; $n += 4; $noc += 2; 

28 } elseif(248 <= $t && $t <= 251) { 

29 $tn = 5; $n += 5; $noc += 2; 

30 } elseif($t == 252 || $t == 253) { 

31 $tn = 6; $n += 6; $noc += 2; 

32 } else { 

33 $n++; 

34 } 

35 if($noc >= $length) { 

36 break; 

37 } 

38 } 

39 if($noc > $length) { 

40 $n -= $tn; 

41 } 

42 $strcut = substr($string, 0, $n); 

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 $strcut = str_replace(array($pre.'&'.$end, $pre.'"'.$end, $pre.'<'.$end, $pre.'>'.$end), array('&', '"', '<', '>'), $strcut); 

50 //修复出现特殊字符串截段的问题 

51 $pos = strrpos($s, chr(1)); 

52 if($pos !== false) { 

53 $strcut = substr($s,0,$pos); 

54 } 

55 return $strcut.$dot; 

56 }

57 ?>

 

你可能感兴趣的:(PHP)