Php: how to determine whether a webpage is UTF-8 encoded _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
Php checks whether the webpage is UTF-8 encoded. Judge the code copy code: $ encodemb_detect_encoding ($ q, array (GB2312, GBK, UTF-8); echo $ encode.br; if ($ encodeGB2312) {$ qiconv (GBK, UTF-8, $ q); // judge the encoding

The code is as follows:


$ Encode = mb_detect_encoding ($ q, array ('gb2312', 'gbk', 'utf-8 '));
Echo $ encode ."
";
If ($ encode = "GB2312 ")
{
$ Q = iconv ("GBK", "UTF-8", $ q );
}
Else if ($ encode = "GBK ")
{
$ Q = iconv ("GBK", "UTF-8", $ q );
}
Else if ($ encode = "EUC-CN ")
{
$ Q = iconv ("GBK", "UTF-8", $ q );
}
Else // CP936
{
// $ Q = iconv ("GB2312", "UTF-8", $ q );
}



In fact, the mb_detect_encoding function is used. if it is not utf8 encoding, it is converted to utf8 encoding to prevent garbled characters.

Encode code: $ encode = mb_detect_encoding ($ q, array ('gb2312', 'gbk', 'utf-8'); echo $ encode. "br/"; if ($ encode = "GB2312") {$ q = iconv ("GBK", "UTF-8", $ q );...

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.