2 classes in PHP dealing with intercepting Chinese characters and having garbled problems

Source: Internet
Author: User
Tags ord strlen
Chinese Characters | problem function Msubstr ($str, $start, $len) {
$strlen = $start + $len;
for ($i =0; $i < $strlen; $i + +) {
if (Ord (substr ($str, $i, 1)) >0xa0) {
$tmpstr. =substr ($str, $i, 2);
$i + +;
} else
$tmpstr. =substr ($str, $i, 1);
}
return $tmpstr;
}

-------------------------------------
? Php
$str = "This character is very long ah, '";
$Short _str=showshort ($STR, 4);//intercept the front 4 characters, the result is: this character ...
Echo "$Short _str";
Function csubstr ($str, $start, $len)
{
$strlen =strlen ($STR);
$clen = 0;
for ($i =0; $i < $strlen; $i + +, $clen + +)
{
if ($clen >= $start + $len)
Break
if (Ord (substr ($str, $i, 1)) >0xa0)
{
if ($clen >= $start)
$tmpstr. =substr ($str, $i, 2);
$i + +;
}
Else
{
if ($clen >= $start)
$tmpstr. =substr ($str, $i, 1);
}
}

return $tmpstr;
}
Function Showshort ($STR, $len)
{
$tempstr = csubstr ($str, 0, $len);
if ($str <> $tempstr)
$tempstr. = "..."; What you want to end with, modify it here.

return $tempstr;
}


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.