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

來源:互聯網
上載者:User
  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
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.