PHP 요약 생성 기능(맞춤형, 잘못된 코드 없음)

WBOY
풀어 주다: 2016-07-25 09:04:09
원래의
989명이 탐색했습니다.
  1. /**
  2. php摘要生成函数
  3. link:http://bbs.it-home.org 2013-3-7
  4. */
  5. function cutstr($string, $length,$charset,$dot) {//字符,截取长度,字符集,结尾符
  6. if(strlen($string) <= $length) {
  7. return $string;
  8. }
  9. $pre = chr(1);
  10. $end = chr(1);
  11. //保护特殊字符串
  12. $string = str_replace(array('&', '"', '<', '>'), array($pre.'&'.$end, $pre.'"'.$end, $pre.'<'.$end, $pre.'>'.$end), $string);
  13. $strcut = '';
  14. if(strtolower($charset) == 'utf-8') {
  15. $n = $tn = $noc = 0;
  16. while($n < strlen($string)) {
  17. $t = ord($string[$n]);
  18. if($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) {
  19. $tn = 1; $n ; $noc ;
  20. } elseif(194 <= $t && $t <= 223) {
  21. $tn = 2; $n = 2; $noc = 2;
  22. } elseif(224 <= $t && $t <= 239) {
  23. $tn = 3; $n = 3; $noc = 2;
  24. } elseif(240 <= $t && $t <= 247) {
  25. $tn = 4; $n = 4; $noc = 2;
  26. } elseif(248 <= $t && $t <= 251) {
  27. $tn = 5; $n = 5; $noc = 2;
  28. } elseif($t == 252 || $t == 253) {
  29. $tn = 6; $n = 6; $noc = 2;
  30. } else {
  31. $n ;
  32. }
  33. if($noc >= $length) {
  34. break;
  35. }
  36. }
  37. if($noc > $length) {
  38. $n -= $tn;
  39. }
  40. $strcut = substr($string, 0, $n);
  41. } else {
  42. for($i = 0; $i < $length; $i ) {
  43. $strcut .= ord($string[$i]) > 127 ? $string[$i].$string[ $i] : $string[$i];
  44. }
  45. }
  46. //还原特殊字符串
  47. $strcut = str_replace(array($pre.'&'.$end, $pre.'"'.$end, $pre.'<'.$end, $pre.'>'.$end), array('&', '"', '<', '>'), $strcut);
  48. //修复出现特殊字符串截段的问题
  49. $pos = strrpos($s, chr(1));
  50. if($pos !== false) {
  51. $strcut = substr($s,0,$pos);
  52. }
  53. return $strcut.$dot;
  54. }
  55. ?>
复制代码

以上就是php摘要生成函数的完整代码,大家复制到自己的编辑器中,然后测试运行吧。



원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿