Methods for removing BOM headers in PHP

Source: Internet
Author: User
The BOM header is a UTF-8 to tell the editor: I'm UTF8 encoded. Its code is xEFxBBxBF, but PHP did not consider the BOM header at the beginning of its design, so it is easy to encounter problems during codec, such as problems encountered today, json_decode, when the decoded string has a BOM header, json_decode fails to be parsed and NULL is returned. (Why

The BOM header is a UTF-8 to tell the editor: I'm UTF8 encoded. Its Encoding is \ xEF \ xBB \ xBF, but PHP did not consider the BOM header at the beginning of the design, so it is easy to encounter problems in coding and decoding, such as problems encountered today, json_decode, when the decoded string has a BOM header, json_decode fails to be parsed and NULL is returned. (Why

The BOM header is a UTF-8 to tell the editor: I'm UTF8 encoded. Its Encoding is \ xEF \ xBB \ xBF

However, PHP did not consider the BOM header at the beginning of the design, so it is easy to encounter problems during codec.

 

For example, if the decoded string has a BOM header, json_decode fails to be parsed and NULL is returned. (Why not automatically detect and remove the BOM header... Tips)

We tried two methods to remove them:

 

$ Result = trim ($ result, "\ xEF \ xBB \ xBF"); print_r (json_decode ($ result, true); exit;

 

There is also a comparison between labels:

$ Result = @ iconv ("UTF-8", "GBK // IGNORE", $ result); $ result = @ iconv ("GBK", "UTF-8 // IGNORE ", $ result); print_r (json_decode ($ result, true); exit;

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.