A function in PHP that controls string output

Source: Internet
Author: User
A function that controls the output of strings in PHP. read a function that controls the output of strings in PHP. // A function that controls the output of strings in php (in Chinese and English). The number of words displayed in each line, avoid English influence // $ str string // $ len the number of characters (Chinese character × 2) functionrep ($ str, $ len) {$ strlen = strlen ($ str ); // A function in php that controls the output of strings (in Chinese and English). The number of words displayed in each line avoids the impact of English.
// $ Str string
// $ Len the number of words displayed per line (Chinese character × 2)


Function rep ($ str, $ len)

{
$ Strlen = strlen ($ str );
$ I = 0;
$ Finstr = "";
$ Pos = 0;

While ($ I <$ strlen)
{
$ S1 = substr ($ str, $ I, 1 );
$ S2 = ord ($ s1 );
If ($ s2> 0xa0 ){

$ Finstr. = substr ($ str, $ I, 2 );
$ Pos + = 2;
$ I + = 2;

} Else {

Switch ($ s2 ){
Case 13:
$ Finstr. ="
";
$ Pos = 0;
Break;
Case 10:
$ Pos = 0;
Break;
Case 32;
$ Finstr. = "";
$ Pos ++;
Break;
Default:
$ Finstr. = htmlspecialchars ($ s1 );
$ Pos ++;
Break;
}

$ I ++;

} // If

If ($ pos >=$ len ){
$ Finstr. ="
";
$ Pos = 0;
}




} // While
Return $ finstr;
}

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.