Thinkphp intercepts string functions and cannot display ellipsis. how can this problem be solved?

Source: Internet
Author: User
Thinkphp intercepts string functions and cannot display ellipsis. how can this problem be solved?

If thinkphp's string truncation function cannot display ellipsis, you can refer to the following solution: Open the common/extend. php page and modify the msubstr function:

  1. Function msubstr ($ str, $ start = 0, $ length, $ charset = "UTF-8", $ suffix = true)
  2. {
  3. If (function_exists ("mb_substr ")){
  4. If ($ suffix)
  5. {
  6. If ($ str = mb_substr ($ str, $ start, $ length, $ charset ))
  7. {
  8. Return mb_substr ($ str, $ start, $ length, $ charset );
  9. }
  10. Else
  11. {
  12. Return mb_substr ($ str, $ start, $ length, $ charset )."...";
  13. }
  14. } // Bbs.it-home.org
  15. Else
  16. {
  17. Return mb_substr ($ str, $ start, $ length, $ charset );
  18. }
  19. }
  20. Elseif (function_exists ('iconv _ substr ')){
  21. If ($ suffix)
  22. {
  23. If ($ str = iconv_substr ($ str, $ start, $ length, $ charset ))
  24. {
  25. Return iconv_substr ($ str, $ start, $ length, $ charset );
  26. }
  27. Else
  28. {
  29. Return iconv_substr ($ str, $ start, $ length, $ charset )."...";
  30. }
  31. }
  32. Else
  33. {
  34. Return iconv_substr ($ str, $ start, $ length, $ charset );
  35. }
  36. }
  37. $ Re ['utf-8'] = "/[\ x01-\ x7f] | [\ xc2-\ xdf] [\ x80-\ xbf] | [\ xe0 -\ xef] [\ x80-\ xbf] {2} | [\ xf0-\ xff] [\ x80-\ xbf] {3 }/";
  38. $ Re ['gb2312'] = "/[\ x01-\ x7f] | [\ xb0-\ xf7] [\ xa0-\ xfe]/";
  39. $ Re ['gbk'] = "/[\ x01-\ x7f] | [\ x81-\ xfe] [\ x40-\ xfe]/";
  40. $ Re ['big5'] = "/[\ x01-\ x7f] | [\ x81-\ xfe] ([\ x40-\ x7e] | \ xa1-\ xfe]) /";
  41. Preg_match_all ($ re [$ charset], $ str, $ match );
  42. $ Slice = join ("", array_slice ($ match [0], $ start, $ length ));
  43. If ($ suffix) return $ slice ."... ";
  44. Return $ slice;
  45. }

When using the above function to intercept a string, you can display the ellipsis. you can test and see how it works.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.