php截取字串函數,php自訂字串截取方法

來源:互聯網
上載者:User
  1. /**
  2. * 方法庫-截取字串
  3. * @param string $string 字串
  4. * @param int$length 字元長度
  5. * @param string $dot 截取後是否添加...
  6. * @param string $charset編碼
  7. * @return string
  8. */
  9. public function cutstr($string, $length, $dot = ' ...', $charset = 'utf-8') {
  10. if (strlen($string) <= $length) {
  11. return $string;
  12. }
  13. $string = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $string);
  14. $strcut = '';
  15. if (strtolower($charset) == 'utf-8') {
  16. $n = $tn = $noc = 0;
  17. while ($n < strlen($string)) {
  18. $t = ord($string[$n]); //ASCII?
  19. if($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) {
  20. $tn = 1; $n++; $noc++;
  21. } elseif (194 <= $t && $t <= 223) {
  22. $tn = 2; $n += 2; $noc += 2;
  23. } elseif (224 <= $t && $t < 239) {
  24. $tn = 3; $n += 3; $noc += 2;
  25. } elseif (240 <= $t && $t <= 247) {
  26. $tn = 4; $n += 4; $noc += 2;
  27. } elseif (248 <= $t && $t <= 251) {
  28. $tn = 5; $n += 5; $noc += 2;
  29. } elseif ($t == 252 || $t == 253) {
  30. $tn = 6; $n += 6; $noc += 2;
  31. } else {
  32. $n++;
  33. }
  34. if($noc >= $length) {
  35. break;
  36. }
  37. }
  38. if ($noc > $length) {
  39. $n -= $tn;
  40. }
  41. $strcut = substr($string, 0, $n);
  42. } else {
  43. for ($i = 0; $i < $length; $i++) {
  44. $strcut .= ord($string[$i]) > 127 ? $string[$i].$string[++$i] : $string[$i];
  45. }
  46. }
  47. $strcut = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $strcut);
  48. return $strcut.$dot;
  49. }
複製代碼

例2,php檢測字串是否存在:

  1. /**
  2. * 方法庫-字串是否存在
  3. * @param string $str :字元或字串
  4. * @param string $string :字串
  5. * @return string 例子: $str='34' $string='1234' 返回 TRUE
  6. */
  7. public function is_str_exist($str, $string) {
  8. $string = (string) $string;
  9. $str = (string) $str;
  10. return strstr($string,$str)===false ? false : true;
  11. }
複製代碼
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.