Home  >  Article  >  Backend Development  >  How to set file encoding format in php

How to set file encoding format in php

藏色散人
藏色散人Original
2020-08-25 09:42:303729browse

php method to set the file encoding format: 1. Add "header("Content-Type: text/html; charset=gb2312")" to the PHP file; 2. Use the iconv method to encode.

How to set file encoding format in php

Recommended: "PHP Video Tutorial"

How to set the encoding format in php

a. If you want to use gb2312 encoding, then php should output the header: header("Content-Type: text/html; charset=gb2312"), and add 85ff8e0110d19ed84647a52e7c5ef244, the encoding format of all files is ANSI, you can open it with Notepad, save as, select the encoding as ANSI, and overwrite the source file.

b. If you want to use utf-8 encoding, then php should output the header: header("Content-Type: text/html; charset=utf-8"), and add d3936be4f028531cd59ae554774bc678, the encoding format of all files is utf-8.

Recently, I need to use the iconv function to convert the captured utf-8 encoded page into gb2312. I found that only by using the iconv function to transcode the captured data, the data will be less for no reason. . I was depressed for a while, and after checking the information on the Internet, I found out that this was a bug in the iconv function. iconv will make an error when converting the character "-" to gb2312. The solution is very simple, that is, add "//IGNORE" after the encoding that needs to be converted, that is, after the second parameter of the iconv function, as follows:

iconv("UTF-8","GB2312//IGNORE",$data)

ignore means to ignore errors during conversion. If there is no ignore parameter, all strings following this character cannot be saved.

The above is the detailed content of How to set file encoding format in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn