How to set encoding format in php_PHP tutorial

WBOY
Release: 2016-07-21 15:13:18
Original
1092 people have browsed it

a. If you want to use gb2312 encoding, then php should output the header: header("Content-Type: text/html; charset=gb2312"), and add , 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 , the encoding format of all files is utf-8.

Recently I needed to use the iconv function to convert the captured utf-8 encoded pages into gb2312. I found that only by using the iconv function to transcode the captured data, the data would be less for no reason. I was depressed for a while. 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, which is the second parameter of the iconv function, as follows:

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

ignore means to ignore errors during conversion. Without the ignore parameter, all strings following this character cannot be saved.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326544.htmlTechArticlea. If you want to use gb2312 encoding, then php should output the header: header(“Content-Type: text/html ; charset=gb2312"), add meta http-equiv="Content-Type" content="text/html;...
to the static page
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!