Explanation of PHP's automatic character set judgment and transcoding _ PHP Tutorial

Source: Internet
Author: User
PHP automatically determines the character set and transcoding details. The principle is very simple, because gb2312gbk is a Chinese byte, the two bytes have a value range, while UTF-8 contains three Chinese characters, and each byte also has a value range. However, the principle of English is simple, because gb2312/gbk is a two-byte Chinese character, which has a value range, while UTF-8 contains three Chinese characters, each byte also has a value range. The English language only occupies one byte (excluding the full width), regardless of the encoding ).
For file encoding checks, you can also directly check the BOM information of UTF-8. Let's not say much about it. the function is used to check and transcode strings.

The code is as follows:


Function safeEncoding ($ string, $ outEncoding = 'utf-8 ')
{
$ Encoding = "UTF-8 ";
For ($ I = 0; $ I {
If (ord ($ string {$ I}) <128)
Continue;

If (ord ($ string {$ I}) & 224) = 224)
{
// The first byte is determined
$ Char = $ string {++ $ I };
If (ord ($ char) & 128) = 128)
{
// The second byte is passed
$ Char = $ string {++ $ I };
If (ord ($ char) & 128) = 128)
{
$ Encoding = "UTF-8 ";
Break;
}
}
}

If (ord ($ string {$ I}) & 192) = 192)
{
// The first byte is determined
$ Char = $ string {++ $ I };
If (ord ($ char) & 128) = 128)
{
// The second byte is passed
$ Encoding = "GB2312 ";
Break;
}
}
}

If (strtoupper ($ encoding) = strtoupper ($ outEncoding ))
Return $ string;
Else
Return iconv ($ encoding, $ outEncoding, $ string );
}
?>


Bytes. The English language is not in...

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.