PHP實作截取字串的通用方法

WBOY
發布: 2016-07-25 08:45:30
原創
957 人瀏覽過
  1. /**
  2. * 截取字符串
  3. * params $string 要截取的字符串
  4. * params $length: 保留长度(字符数)
  5. * params $dot: 多余部分显示
  6. **/
  7. function _cutstr($string, $length, $dot = ' ...') {
  8. if(strlen($string) <= $length) {
  9. return $string;
  10. }
  11. $string = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $string);
  12. $strcut = '';
  13. $n = $tn = $noc = 0;
  14. while($n < strlen($string)) {
  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. if($noc >= $length) {
  32. break;
  33. }
  34. }
  35. if($noc > $length) {
  36. $n -= $tn;
  37. }
  38. $strcut = substr($string, 0, $n);
  39. $strcut = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $strcut);
  40. return $strcut.$dot;
  41. }
复制代码

PHP


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板