PHP internal code conversion function mb_convert_encoding ()

Source: Internet
Author: User
Because a program to use the output UTF-8 encoding but the original data is GBK encoding Baidu found a lot of internal code conversion class but there are many disadvantages. Does not support GBKTOUTF-8 but one to find or in PHP official FAQ found mb_convert_encoding () the function to be in PHP... SyntaxHighlighter. all ()

 

Because a program needs to output UTF-8 encoding, but the original data is GBK encoding

Baidu has found many classes related to internal code conversion, but there are many disadvantages. Does not support gbk to UTF-8

However, I found mb_convert_encoding () in the official PHP FAQ. This function is available only after PHP4.0.6 or above.

Link: http://cn.php.net/manual/zh/function.mb-convert-encoding.php

Make a GBK To UTF-8

<? Php

Header ("content-Type: text/html; charset = Utf-8 ");

Echo mb_convert_encoding ("You are my friends", "UTF-8", "GBK ");

?>

Another GB2312 To Big5

<? Php

Header ("content-Type: text/html; charset = big5 ");

Echo mb_convert_encoding ("You are my friend", "big5", "GB2312 ");

?>

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.