Function for solving the problem of Chinese and English String Length

Source: Internet
Author: User

Copy codeThe Code is as follows: function strSplit ($ s, $ len ){
$ End = '... ';
$ Result = '';
$ StrLen = strlen ($ s );
If ($ strLen <= $ len ){
Return $ s;
}
$ Len-= 2;
For ($ I = 0; $ I <$ len & $ I <$ strLen; $ I ++ ){
$ C = $ s [$ I];
If (ord ($ c) <0x80 ){
$ Result. = $ c;
} Elseif ($ I + 1 <$ len ){
$ Result. = $ s [$ I ++]. $ s [$ I];
}
}
Return ($ I <$ strLen )? ($ Result. $ end): $ result;
}

Echo strSplit ('000000', 10), '<br/> ';
Echo strSplit ('000000', 10), '<br/> ';
Echo strSplit ('567890abcdefghijkl 1234 Chinese characters ', 10),' <br/> ';
Echo strSplit ('all are Chinese', 10), '<br/> ';
Echo strSplit ('all parts a and B are in c. E 文', 10), '<br/> ';

Output:
1234567
1234567890
1234 Chinese...
All are...
All Department a and department B...

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.