Chinese partner's English line solves the problem of Chinese and English string length function

Source: Internet
Author: User
Chinese partner English lines: Chinese partner English lines solve Chinese and English string length problem function: Copy the code as follows: functionstrSplit ($ s, $ len) {$ end ...; $ Result; $ strLenstrlen ($ s); if ($ strLen & lt; $ len) {return $ s ;}$ len-2; for ($ i0; $ I & lt; $ len & $ The 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 ),'
';
Echo strSplit ('000000', 10 ),'
';
Echo strSplit ('567890abcdefghijkl 1234 Chinese character ', 10 ),'
';
Echo strSplit ('All are Chinese', 10 ),'
';
Echo strSplit ('All parts a, B, c, d, e 文', 10 ),'
';
Output:
1234567
1234567890
1234 Chinese...
All are...
All department a and department B...

The above describes the Chinese partners' English lines to solve the problem of Chinese and English string length, including the Chinese partners' English lines, and hope to help those who are interested in the PHP Tutorial.

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.